Skip to content

Commit

Permalink
Problem: some amino registrations are missing (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-nguy authored Mar 24, 2023
1 parent e742330 commit a54e953
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion module/x/gravity/types/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ import (
// RegisterLegacyAminoCodec registers the vesting interfaces and concrete types on the
// provided LegacyAmino codec. These types are used for Amino JSON serialization
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgDelegateKeys{}, "gravity-bridge/", nil)
cdc.RegisterConcrete(&MsgDelegateKeys{}, "gravity-bridge/MsgDelegateKeys", nil)
cdc.RegisterConcrete(&MsgSendToEthereum{}, "gravity-bridge/MsgSendToEthereum", nil)
cdc.RegisterConcrete(&MsgCancelSendToEthereum{}, "gravity-bridge/MsgCancelSendToEthereum", nil)
}

var (
Expand Down

0 comments on commit a54e953

Please sign in to comment.