From 4eadad5c7abb481d32c800b2d4fae791def247e5 Mon Sep 17 00:00:00 2001 From: Brandon Weng <18161326+BrandonWeng@users.noreply.github.com> Date: Thu, 19 Jan 2023 11:38:56 -0500 Subject: [PATCH] [acl] Implement RegisterLegacyAminoCodec (#138) ## Describe your changes and provide context Needs to be implemented ## Testing performed to validate your change --- x/accesscontrol/module.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x/accesscontrol/module.go b/x/accesscontrol/module.go index 7c073c380..4361f3269 100644 --- a/x/accesscontrol/module.go +++ b/x/accesscontrol/module.go @@ -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) {