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?;
self.operate_account_send_deshielded_one_receiver(
acc_addr,
new_utxo,
comm_gen_hash,
)
.await?;
self.operate_account_send_deshielded_one_receiver(acc_addr, new_utxo, comm_gen_hash)
.await?;
Ok(())
}
@ -1644,12 +1640,8 @@ impl NodeCore {
let (new_utxo, comm_gen_hash) = self.operate_account_mint_private(acc_addr, 100).await?;
self.operate_account_send_deshielded_one_receiver(
acc_addr_rec,
new_utxo,
comm_gen_hash,
)
.await?;
self.operate_account_send_deshielded_one_receiver(acc_addr_rec, new_utxo, comm_gen_hash)
.await?;
Ok(())
}

View File

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