We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a transaction that references an account multiple times. The account appears as both isSigner true and false.
When the transaction is compiled the flag from the first occurrence of the account is used. This could have isSigner false.
What should happen is that isSigner is true if the account occurs at least once as signer. See this code here.
In the project this code was ported from this is solved by sorting first putting the isSigner accounts first.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a transaction that references an account multiple times. The account appears as both isSigner true and false.
When the transaction is compiled the flag from the first occurrence of the account is used. This could have isSigner false.
What should happen is that isSigner is true if the account occurs at least once as signer. See this code here.
In the project this code was ported from this is solved by sorting first putting the isSigner accounts first.
The text was updated successfully, but these errors were encountered: