-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Basecoin fix #1919
Basecoin fix #1919
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1919 +/- ##
=======================================
Coverage 60.63% 60.63%
=======================================
Files 119 119
Lines 6917 6917
=======================================
Hits 4194 4194
Misses 2484 2484
Partials 239 239 |
examples/basecoin/app/app.go
Outdated
@@ -102,6 +104,7 @@ func MakeCodec() *wire.Codec { | |||
// register custom types | |||
cdc.RegisterInterface((*auth.Account)(nil), nil) | |||
cdc.RegisterConcrete(&types.AppAccount{}, "basecoin/Account", nil) | |||
cdc.RegisterConcrete(auth.StdTx{}, "auth/StdTx", nil) |
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.
Can you do:
auth.RegisterWire(cdc *wire.Codec)
Other than that, looks good to me!
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've updated the resister code as you mentioned. :)
Thanks for the PR @gblue1223! We will get it reviewed soon. |
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.
utACK, thanks for the fix!
Ah, unfortunately you based this on |
docs/
)PENDING.md
that include links to the relevant issue or PR that most accurately describes the change.cmd/gaia
andexamples/
For Admin Use: