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.
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
feat: export genesis in simapp v2 #21199
feat: export genesis in simapp v2 #21199
Changes from 46 commits
ebf5006
268c034
babf339
6780043
61c0343
b8ac0e5
a1b0a5f
71d0027
cadccd4
7bc73f0
728313a
e97fda6
57c9751
a32d778
4bcf345
7006da5
91570fb
de93866
9fc2546
7a1fa60
6b32d53
db542cf
70f1090
ea0193d
c552beb
f67770e
2948e09
a0ffd0a
519d6b7
f199f06
11ec8d2
a634633
e0093cf
5ab7c1a
da07a4a
264434e
aedc7b0
8f97b21
9156b86
858af16
a789413
dee4c3b
5051c67
73e839b
98b4397
4324f42
3ea6367
1874e0c
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Use context with timeout or cancellation.
Using
context.Background()
does not allow for timeout or cancellation. Consider usingcontext.WithTimeout
orcontext.WithCancel
to handle potential long-running operations.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.
Use context with timeout or cancellation.
Using
context.Background()
does not allow for timeout or cancellation. Consider usingcontext.WithTimeout
orcontext.WithCancel
to handle potential long-running operations.