Skip to content

Commit

Permalink
fix nil memory access on authz
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Oct 10, 2024
1 parent 6299f61 commit 79505a2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ func NewAppKeeper(
appKeepers.FeeGrantKeeper = &feeGrantKeeper

authzKeeper := authzkeeper.NewKeeper(runtime.NewKVStoreService(appKeepers.keys[authzkeeper.StoreKey]), appCodec, bApp.MsgServiceRouter(), appKeepers.AccountKeeper)
authzKeeper = authzKeeper.SetBankKeeper(appKeepers.BankKeeper)
appKeepers.AuthzKeeper = &authzKeeper

// Create evidence Keeper for to register the IBC light client misbehaviour evidence route
Expand Down

0 comments on commit 79505a2

Please sign in to comment.