19 lines
479 B
Go
19 lines
479 B
Go
|
package keeper
|
||
|
|
||
|
import (
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
|
||
|
"github.com/tharsis/ethermint/x/feemarket/types"
|
||
|
)
|
||
|
|
||
|
// GetParams returns the total set of fee market parameters.
|
||
|
func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
|
||
|
k.paramSpace.GetParamSet(ctx, ¶ms)
|
||
|
return params
|
||
|
}
|
||
|
|
||
|
// SetParams sets the fee market parameters to the param space.
|
||
|
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
|
||
|
k.paramSpace.SetParamSet(ctx, ¶ms)
|
||
|
}
|