Skip to content

Commit

Permalink
output cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Oct 25, 2024
1 parent 28778ea commit 0080621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/snippets-base/src/account_tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ pub async fn retrieve_account_as_scenario_set_state<GatewayProxy: GatewayAsyncSe
.request(GetAccountEsdtTokensRequest::new(address))
.await
.unwrap_or_else(|err| {
println!("failed to retrieve ESDT tokens for address {bech32_address}: {err}");
eprintln!("failed to retrieve ESDT tokens for address {bech32_address}: {err}");
HashMap::new()
});
let account_esdt_roles = api
.request(GetAccountEsdtRolesRequest::new(address))
.await
.unwrap_or_else(|err| {
println!("failed to retrieve ESDT roles for address {bech32_address}: {err}");
eprintln!("failed to retrieve ESDT roles for address {bech32_address}: {err}");
HashMap::new()
});
let account_storage = api
Expand Down

0 comments on commit 0080621

Please sign in to comment.