-
Notifications
You must be signed in to change notification settings - Fork 128
refactor: inject evmd into tests #845
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
Draft
cloudgray
wants to merge
51
commits into
cosmos:vlad/evmd-refactor
Choose a base branch
from
cloudgray:cloudgray/evmd-refactor
base: vlad/evmd-refactor
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
refactor: inject evmd into tests #845
cloudgray
wants to merge
51
commits into
cosmos:vlad/evmd-refactor
from
cloudgray:cloudgray/evmd-refactor
Conversation
This file contains hidden or 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
cosmos#823) * refactor: removce authz dependency from test suite and EvmApp interface * chore: update CHANGELOG.md
…texts like CheckTx (cosmos#817) Co-authored-by: Alex | Cosmos Labs <[email protected]>
…ee (cosmos#828) * fix: validate decimals before conversion to prevent panic in GetBaseFee * when coininfo avoid panic on empty coininfo for old ctx * add test * doc
* refactor: removce authz dependency from test suite and EvmApp interface * refactor injected app interfaces for each test * chore: fix test setup * refactor app injection structure * apply new app injection pattern to precompile tests * apply new app injection pattern to entire tests * cleanup code * cleanup code * cleanup code * chore: fix lint * refactor: seperate ibckeeper getter from basic test app interface * chore: update change log * chore: fix typo --------- Co-authored-by: Alex | Cosmos Labs <[email protected]>
…osmos#837) checks current balance and either burns excess or mints deficit to reach target
* wip * fixes and all * delete * remove import replace * some changes * go mod * finalize * readme * wording * word * remove local replace
* Problem: events emitted in hooks are duplicated Closes: cosmos#628 * Update CHANGELOG.md * const --------- Co-authored-by: Alex | Cosmos Labs <[email protected]>
* cleanup command * better
3 tasks
* fix(test): avoid mutation of global int256 variable * cleanup reserve when erc20 precompile acct don't have balance * Revert "test: adjusts precisebank module account balance to expected amount (cosmos#837)" This reverts commit 381a354. * cleanup genesis * cleanup --------- Co-authored-by: Alex | Cosmos Labs <[email protected]>
Comment on lines
+564
to
+567
| for _, k := range app.keys { | ||
| nonTransientKeys[i] = k | ||
| i++ | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
Iteration over map may be a possible source of non-determinism
Comment on lines
+568
to
+571
| for _, k := range app.oKeys { | ||
| nonTransientKeys[i] = k | ||
| i++ | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
Iteration over map may be a possible source of non-determinism
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Closes: #XXXX
Author Checklist
All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.
I have...
mainbranch