fix: fmt fix

This commit is contained in:
Oleksandr Pravdyvyi 2025-04-25 09:08:43 +03:00
parent 456016959a
commit aa88d1c8f4
2 changed files with 5 additions and 17 deletions

View File

@ -1589,12 +1589,8 @@ impl NodeCore {
let (new_utxo, comm_gen_hash) = self.operate_account_mint_private(acc_addr, 100).await?; let (new_utxo, comm_gen_hash) = self.operate_account_mint_private(acc_addr, 100).await?;
self.operate_account_send_deshielded_one_receiver( self.operate_account_send_deshielded_one_receiver(acc_addr, new_utxo, comm_gen_hash)
acc_addr, .await?;
new_utxo,
comm_gen_hash,
)
.await?;
Ok(()) Ok(())
} }
@ -1644,12 +1640,8 @@ impl NodeCore {
let (new_utxo, comm_gen_hash) = self.operate_account_mint_private(acc_addr, 100).await?; let (new_utxo, comm_gen_hash) = self.operate_account_mint_private(acc_addr, 100).await?;
self.operate_account_send_deshielded_one_receiver( self.operate_account_send_deshielded_one_receiver(acc_addr_rec, new_utxo, comm_gen_hash)
acc_addr_rec, .await?;
new_utxo,
comm_gen_hash,
)
.await?;
Ok(()) Ok(())
} }

View File

@ -660,11 +660,7 @@ impl JsonHandler {
}; };
cover_guard cover_guard
.operate_account_send_deshielded_one_receiver( .operate_account_send_deshielded_one_receiver(acc_addr, utxo_to_send, comm_hash)
acc_addr,
utxo_to_send,
comm_hash,
)
.await .await
.map_err(cast_common_execution_error_into_rpc_error)? .map_err(cast_common_execution_error_into_rpc_error)?
}; };