-
Notifications
You must be signed in to change notification settings - Fork 492
New issue
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
Dryrun: Split dryrun cost field into BudgetConsumed and BudgetAdded #3957
Merged
Merged
Changes from 11 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
e5aa557
convert dryrun cost field to int from uint
algoidurovic 501fe41
unit test to enforce returned cost value
algoidurovic 228e4e7
comment serialized app for clarity
algoidurovic df61276
change spec type to number from integer
algoidurovic c502953
hack to support int64. probably unsafe so may need to undo
algoidurovic 7b88927
breakup cost field into budgetCredit and budgetDebit
algoidurovic 9045f37
formatting
algoidurovic 3a0d219
fix e2e expect test for dryrun cost output
algoidurovic 2a78b6a
resolve merge conflicts
algoidurovic 25564f8
change format in spec
algoidurovic 515b3b2
resolve merge conflict
algoidurovic 9b94a5f
add comment for clarification and remove generated file
algoidurovic bcbf075
resolve merge conflict
algoidurovic caa3f38
rename fields
algoidurovic 9d324b9
rename fields
algoidurovic d3c7d3d
rename fiels
algoidurovic 4efa1d1
bring back Cost field but mark for deprecation
algoidurovic 96dd3c5
Merge branch 'master' of https://github.com/algorand/go-algorand into…
algoidurovic 90b0ac4
Merge branch 'master' of https://github.com/algorand/go-algorand into…
algoidurovic 20e127f
regenerate
algoidurovic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why isn't
budgetCredted
justcost
? It is becausecost
is reallycredit - debit
at this point? This might warrant a comment.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, I'll add a comment to clarify. You're right,
cost = credit - debit