Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yeptos authored and sherry-x committed Oct 2, 2024
1 parent e9f0ba5 commit 7f784af
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions sdk/src/transaction_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,25 +192,29 @@ impl TransactionFactory {
owners: Vec<AccountAddress>,
signatures_required: u64,
) -> TransactionBuilder {
self.payload(aptos_stdlib::multisig_account_create_with_existing_account_call(
owners,
signatures_required,
vec![],
vec![],
))
self.payload(
aptos_stdlib::multisig_account_create_with_existing_account_call(
owners,
signatures_required,
vec![],
vec![],
),
)
}

pub fn create_multisig_account_with_existing_account_and_revoke_auth_key(
&self,
owners: Vec<AccountAddress>,
signatures_required: u64,
) -> TransactionBuilder {
self.payload(aptos_stdlib::multisig_account_create_with_existing_account_and_revoke_auth_key_call(
owners,
signatures_required,
vec![],
vec![],
))
self.payload(
aptos_stdlib::multisig_account_create_with_existing_account_and_revoke_auth_key_call(
owners,
signatures_required,
vec![],
vec![],
),
)
}

pub fn create_multisig_transaction(
Expand Down

0 comments on commit 7f784af

Please sign in to comment.