Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Dec 5, 2023
1 parent b3834a8 commit 6b4419e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/wallet/operations/transaction/account.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ where
pub async fn implicit_account_transition(
&self,
output_id: &OutputId,
key_source: Option<impl Into<BlockIssuerKeySource>>,
key_source: Option<impl Into<BlockIssuerKeySource> + Send>,
) -> Result<TransactionWithMetadata> {
let issuer_id = AccountId::from(output_id);

Expand All @@ -46,7 +46,7 @@ where
pub async fn prepare_implicit_account_transition(
&self,
output_id: &OutputId,
key_source: Option<impl Into<BlockIssuerKeySource>>,
key_source: Option<impl Into<BlockIssuerKeySource> + Send>,
) -> Result<PreparedTransactionData>
where
crate::wallet::Error: From<S::Error>,
Expand Down

0 comments on commit 6b4419e

Please sign in to comment.