fix(x/authz,x/feegrant): check blocked address (#20102)

This commit is contained in:
Julien Robert
2024-04-21 21:27:56 +02:00
committed by GitHub
parent 0a682f7ae3
commit fcb9d84edb
11 changed files with 62 additions and 6 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ type AppModule struct {
func NewAppModule(cdc codec.Codec, keeper keeper.Keeper, ak authz.AccountKeeper, bk authz.BankKeeper, registry cdctypes.InterfaceRegistry) AppModule {
return AppModule{
AppModuleBasic: AppModuleBasic{cdc: cdc, ac: ak.AddressCodec()},
keeper: keeper,
keeper: keeper.SetBankKeeper(bk), // Super ugly hack to not be api breaking in v0.50 and v0.47
accountKeeper: ak,
bankKeeper: bk,
registry: registry,