fix: formatting

This commit is contained in:
Daniil Polyakov 2026-03-10 01:09:03 +03:00
parent 65ce23b9e1
commit d79ac3f9a8
2 changed files with 12 additions and 3 deletions

View File

@ -326,7 +326,10 @@ impl WalletCore {
}
// TODO: handle large Err-variant properly
#[expect(clippy::result_large_err, reason = "ExecutionFailureKind is large, tracked by TODO")]
#[expect(
clippy::result_large_err,
reason = "ExecutionFailureKind is large, tracked by TODO"
)]
pub async fn send_privacy_preserving_tx(
&self,
accounts: Vec<PrivacyPreservingAccount>,

View File

@ -9,11 +9,17 @@ pub mod private;
pub mod public;
pub mod shielded;
#[expect(clippy::multiple_inherent_impl, reason = "impl blocks split across multiple files for organization")]
#[expect(
clippy::multiple_inherent_impl,
reason = "impl blocks split across multiple files for organization"
)]
pub struct NativeTokenTransfer<'wallet>(pub &'wallet WalletCore);
// TODO: handle large Err-variant properly
#[expect(clippy::result_large_err, reason = "ExecutionFailureKind is large, tracked by TODO")]
#[expect(
clippy::result_large_err,
reason = "ExecutionFailureKind is large, tracked by TODO"
)]
fn auth_transfer_preparation(
balance_to_move: u128,
) -> (