From 85cdc331c740a2ca9010eb20ea146e22198ff225 Mon Sep 17 00:00:00 2001 From: Elizabeth Engelman <4752801+elizabethengelman@users.noreply.github.com> Date: Thu, 7 Nov 2024 12:26:37 -0500 Subject: [PATCH] Rename fn --- cmd/soroban-cli/src/commands/contract/invoke.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/soroban-cli/src/commands/contract/invoke.rs b/cmd/soroban-cli/src/commands/contract/invoke.rs index 06da3e250..343150c42 100644 --- a/cmd/soroban-cli/src/commands/contract/invoke.rs +++ b/cmd/soroban-cli/src/commands/contract/invoke.rs @@ -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, @@ -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 {