Skip to content

Commit

Permalink
update simapp type
Browse files Browse the repository at this point in the history
  • Loading branch information
avery committed Nov 22, 2024
1 parent 07e2607 commit fdf9d2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simapp/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ func NewDistrKeeperAdapter(keeper distrkeeper.Keeper) DistrKeeperAdapter {
return DistrKeeperAdapter{keeper: keeper}
}

func (a DistrKeeperAdapter) GetFeePool(ctx sdk.Context) (distrtypes.FeePool, error) {
func (a DistrKeeperAdapter) GetFeePool(ctx context.Context) (distrtypes.FeePool, error) {
return a.keeper.FeePool.Get(ctx)
}

func (a DistrKeeperAdapter) SetFeePool(ctx sdk.Context, feePool distrtypes.FeePool) error {
func (a DistrKeeperAdapter) SetFeePool(ctx context.Context, feePool distrtypes.FeePool) error {
return a.keeper.FeePool.Set(ctx, feePool)
}

Expand Down

0 comments on commit fdf9d2c

Please sign in to comment.