Skip to content

Commit

Permalink
Rename fn
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Nov 7, 2024
1 parent fc95018 commit 85cdc33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/commands/contract/invoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ impl Cmd {
})
}

async fn check_should_send_tx_with_default_account(
async fn should_send_tx_with_default_account(
&self,
host_function_params: InvokeContractArgs,
rpc_client: Client,
Expand Down Expand Up @@ -241,7 +241,7 @@ impl NetworkRunnable for Cmd {
build_host_function_parameters(&contract_id, &self.slop, &spec_entries, config)?;

let should_send_tx = self
.check_should_send_tx_with_default_account(host_function_params.clone(), client.clone())
.should_send_tx_with_default_account(host_function_params.clone(), client.clone())
.await?;

let account_details = if should_send_tx == ShouldSend::Yes {
Expand Down

0 comments on commit 85cdc33

Please sign in to comment.