diff --git a/src/spl/token/core.py b/src/spl/token/core.py index 046c45cd..f2ce539c 100644 --- a/src/spl/token/core.py +++ b/src/spl/token/core.py @@ -281,7 +281,7 @@ def _transfer_args( ) ] msg = Message.new_with_blockhash(ixs, self.payer.pubkey(), recent_blockhash) - txn = Transaction([self.payer], msg, recent_blockhash) + txn = Transaction([self.payer, *signers], msg, recent_blockhash) return txn, opts def _set_authority_args( @@ -666,7 +666,7 @@ def _transfer_checked_args( ) ] msg = Message.new_with_blockhash(ixs, self.payer.pubkey(), recent_blockhash) - txn = Transaction([self.payer], msg, recent_blockhash) + txn = Transaction([self.payer, *signers], msg, recent_blockhash) return txn, opts def _mint_to_checked_args(