diff --git a/x/distribution/keeper/store.go b/x/distribution/keeper/store.go index 6ba127910018..f8966d1a51e6 100644 --- a/x/distribution/keeper/store.go +++ b/x/distribution/keeper/store.go @@ -437,3 +437,8 @@ func (k Keeper) DeleteAllValidatorSlashEvents(ctx context.Context) { store.Delete(iter.Key()) } } + +// GetFeePool get the global fee pool distribution info +func (k Keeper) GetFeePool(ctx context.Context) (types.FeePool, error) { + return k.FeePool.Get(ctx) +}