signers needs to be passed instead of owner (#98)

In the case that wrapped SOL account is created, the keypair for the new account was not being passed to send transaction resulting in an error when using the settle funds method
This commit is contained in:
SirPalamede 2021-11-28 18:41:10 +10:00 committed by GitHub
parent 58f10123e7
commit 6f3ba279da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -166,4 +166,4 @@ class Market(MarketCore):
min_bal_for_rent_exemption=min_bal_for_rent_exemption,
should_wrap_sol=should_wrap_sol,
)
return self._conn.send_transaction(transaction, owner, opts=opts)
return self._conn.send_transaction(transaction, *signers, opts=opts)