Skip to content

Commit

Permalink
[acl] Implement RegisterLegacyAminoCodec (sei-protocol#138)
Browse files Browse the repository at this point in the history
## Describe your changes and provide context
Needs to be implemented 

## Testing performed to validate your change
  • Loading branch information
BrandonWeng authored Jan 19, 2023
1 parent 4a8a244 commit 4eadad5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x/accesscontrol/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ func (AppModuleBasic) Name() string {
}

// RegisterLegacyAminoCodec registers the accesscontrol module's types on the given LegacyAmino codec.
func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {}
func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
types.RegisterCodec(cdc)
}

// RegisterInterfaces registers the module's interface types
func (b AppModuleBasic) RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
Expand Down

0 comments on commit 4eadad5

Please sign in to comment.