Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal authored and gitbutler-client committed Dec 1, 2024
1 parent c083fec commit 02d0528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/contract/arg_parsing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ fn resolve_sc_address(
let account = match sc_address {
ScAddress::Address(addr) => return Ok((addr.to_string(), None)),
addr @ ScAddress::Alias(_) => {
let addr= addr.resolve(&config.locator, &config.get_network()?.network_passphrase)?;
let addr = addr.resolve(&config.locator, &config.get_network()?.network_passphrase)?;
match addr {
xdr::ScAddress::Account(account) => account.to_string(),
contract @ xdr::ScAddress::Contract(_) => return Ok((contract.to_string(), None)),
Expand Down

0 comments on commit 02d0528

Please sign in to comment.