This commit is contained in:
Sergio Chouhy 2025-09-30 14:17:46 -03:00
parent f707d3893d
commit 23afa1e05a
2 changed files with 2 additions and 2 deletions

View File

@ -565,7 +565,7 @@ pub async fn execute_subcommand(command: Command) -> Result<SubcommandReturnValu
let to = produce_account_addr_from_hex(to)?; let to = produce_account_addr_from_hex(to)?;
let (res, secret) = wallet_core let (res, secret) = wallet_core
.send_shiedled_native_token_transfer(from, to, amount) .send_shielded_native_token_transfer(from, to, amount)
.await?; .await?;
println!("Results of tx send is {res:#?}"); println!("Results of tx send is {res:#?}");

View File

@ -5,7 +5,7 @@ use nssa::Address;
use crate::WalletCore; use crate::WalletCore;
impl WalletCore { impl WalletCore {
pub async fn send_shiedled_native_token_transfer( pub async fn send_shielded_native_token_transfer(
&self, &self,
from: Address, from: Address,
to: Address, to: Address,