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
go-algorand
As of go-algorand PR #3957 the dry run response transaction top-level-field cost is being deprecated. There is one usage of this field in non-deprecated graviton code.
The good news is that new better fields BudgetConsumed and BudgetAdded are being introduced in the same PR and that the cost can be calculated as
BudgetConsumed
BudgetAdded
net cost = BudgetConsumed - BudgetAdded
cost
net cost
The text was updated successfully, but these errors were encountered:
Closing - https://github.com/algorand/graviton/releases/tag/v0.5.0 exists and algorand/pyteal#607 uses the functionality to implement OpUp tests.
Sorry, something went wrong.
tzaffi
No branches or pull requests
Cost is Deprecated in
go-algorand
's Dry RunAs of go-algorand PR #3957 the dry run response transaction top-level-field cost is being deprecated. There is one usage of this field in non-deprecated graviton code.
The good news is that new better fields
BudgetConsumed
andBudgetAdded
are being introduced in the same PR and that the cost can be calculated asAction items
cost
with thenet cost
formula above and stops referencing the originalcost
fieldBudgetConsumed
andBudgetAdded
in the same way thatcost
isThe text was updated successfully, but these errors were encountered: