-
Notifications
You must be signed in to change notification settings - Fork 829
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
Scaffolding #1916
Scaffolding #1916
Conversation
x/evm/types/params.pb.go
Outdated
@@ -104,53 +104,122 @@ func (m *Params) GetTargetGasUsedPerBlock() uint64 { | |||
return 0 | |||
} | |||
|
|||
type ParamsPreV580 struct { |
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.
not sure why that is being generated. Seen this too, but dropped
DecryptableAvailableBalance string | ||
} | ||
|
||
func (m *Account) ToProto() *CtAccount { |
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.
For consistency, either my changes have to move to ToProto
to non proto objects or this has method would move to CtAccount
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 changed this to a constructor in CtAccount instead - (NewCtAccount).
* scaffolding for new module * keeper scaffolding * scaffold with types * go sum * comments pt1 * comments * drop prev580
Describe your changes and provide context
Adds the basic scaffolding for the rest of the app
Testing performed to validate your change