fcl-js
fcl-js copied to clipboard
Payer can not be different accounts error
I currently am trying to send a transaction as follows:
var response =
await
fcl.send
(
[ fcl.transaction (_transaction_code)
, fcl.args (_arguments)
, fcl.proposer (proposer)
, fcl.payer (proposer)
, fcl.authorizations ([fcl_api.authz, proposer])
, fcl.limit (9999) ] )
return await
fcl .tx (response) .onceSealed () }
On the old version of the js fcl API, it works fine and the transaction goes through. However on the new version, I get the following error message:
Is this caused by issue #1226. If yes, is there any workaround till the issue is fixed?
Has this been fixed yet?
having same issue