Skip to content

Commit

Permalink
fix arg names
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 b9e7f50 commit e9f0ba5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk/src/transaction_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ impl TransactionFactory {

pub fn create_multisig_account_with_existing_account(
&self,
additional_owners: Vec<AccountAddress>,
owners: Vec<AccountAddress>,
signatures_required: u64,
) -> TransactionBuilder {
self.payload(aptos_stdlib::multisig_account_create_with_existing_account_call(
additional_owners,
owners,
signatures_required,
vec![],
vec![],
Expand All @@ -202,11 +202,11 @@ impl TransactionFactory {

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

0 comments on commit e9f0ba5

Please sign in to comment.