Fix: register msgs on legacy codec (#1200)

* add deposits to genesis state

* import/export genesis with deposits

* add helper keeper method + update tests

* invariants + tests

* register invariants on module

* fix genesis test invariant init

* clean up invariants test

* remove comment from test file

* fix invariants test

* register msgs on legacy codec

Co-authored-by: denalimarsh <denalimarsh@gmail.com>
This commit is contained in:
Ruaridh 2022-03-30 16:21:59 +01:00 committed by GitHub
parent 988836dee0
commit 60489c10a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,8 @@ import (
// RegisterLegacyAminoCodec registers all the necessary types and interfaces for the
// savings module.
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgDeposit{}, "savings/MsgDeposit", nil)
cdc.RegisterConcrete(&MsgWithdraw{}, "savings/MsgWithdraw", nil)
}
func RegisterInterfaces(registry types.InterfaceRegistry) {