-
Notifications
You must be signed in to change notification settings - Fork 13
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
[Migration] Application module #378
Closed
red-0ne
wants to merge
14
commits into
migration/gateway-x-service
from
migration/application-module
Closed
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a6c7474
scaffold: module application --dep bank,account,gateway
red-0ne 060dcfa
scaffold: map application --module application
red-0ne a19887d
scaffold: message stake-application --module application
red-0ne 28d4ddf
scaffold: message unstake-application --module application
red-0ne 7f5c7ab
scaffold: message delegate-to-gateway --module application
red-0ne 004773a
scaffold: message undelegate-from-gateway --module application
red-0ne c9e3caf
reconcile: application.proto
red-0ne 54dbb7e
reconcile: fix MsgStakeApplication types
red-0ne d6f5287
reconcile: application module files
red-0ne d67ff4f
reconcile: Address review change requests
red-0ne 7255e42
reconcile: Fix wrong error message
red-0ne 1140daf
reconcile: Fix proto signre filed name
red-0ne e8b6be4
fix: msg/autocli arguments mismatch
red-0ne 5e4966a
chore: application module review improvements
bryanchriswhite 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
Oops, something went wrong.
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.
IMHO the cosmos-sdk logger is not ideal because its debug level is not really useful; the default level is
info
and thedebug
log contains a bunch of cosmos-sdk specific output which obscures our application's debug logs. I think we may be better served by using polylog on-chain, for example.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.
This change and discussion should probably be moved to the
migration/base
review.