-
Notifications
You must be signed in to change notification settings - Fork 103
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(x/ecocredit): Msg Create implementation #762
Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
86cefab
feat: msgserver Create implementation
robert-zaremba e629fbb
add Validate
robert-zaremba d189379
Merge remote-tracking branch 'origin/release/v2.2.x' into robert/msgs…
robert-zaremba 924c6ad
adding converton methods
robert-zaremba 9c523c6
update create rpc
robert-zaremba d8d29d7
build fixes
robert-zaremba c2f1b30
Merge branch 'release/v2.2.x' of github.com:regen-network/regen-ledge…
aaronc a9a042e
updates to Create
aaronc b03aa13
refactor tests
aaronc f0136bb
WIP on Create
aaronc 0c2e920
passing tests
aaronc a0b2750
fix tests
aaronc 604c2c0
fix app.go
aaronc 1216897
small refactoring
robert-zaremba b5ab7ae
adding HasClassInfo
robert-zaremba 035c38e
Merge branch 'release/v2.2.x' into robert/msgsrv-create
robert-zaremba 8e3ded8
remove found from assertCreditTypeExists
robert-zaremba e1ed074
review
robert-zaremba c22bcab
c.Name == creditType
robert-zaremba 0521f7b
rollback to use Abbreviation for CreditType
robert-zaremba d2bfe7b
update tests
robert-zaremba 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
add Validate
- Loading branch information
commit e629fbbe462c8da2cce5afabd4e8db8b3b1f8ec3
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
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.
let's not have interface methods on generated types. These will all go away with pulsar
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.
I know, the interface methods will be removed. But this is what we have now.
The idea of
Validate
is to do all stateful validation, that's why I didn't call itValidateFee
.