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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Given two different Applications (lets say appId id is 10 & otherApp id 20) this assert is passing
Applications
const txn = gtxn.Transaction(i) assert(txn.appId === otherApp, 'wrong app id');
if you get more granular and do something like
assert(txn.appId.id === otherApp.id, 'wrong app id');
the assert will fail like it should.
puya-ts@1.0.0-beta.38
In my opinion, this should fail given the applications are not the same
It currently passes the assert
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Subject of the issue
Given two different
Applications
(lets say appId id is 10 & otherApp id 20) this assert is passingif you get more granular and do something like
the assert will fail like it should.
Your environment
puya-ts@1.0.0-beta.38
Steps to reproduce
Applications
Expected behaviour
In my opinion, this should fail given the applications are not the same
Actual behaviour
It currently passes the assert
The text was updated successfully, but these errors were encountered: