mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
19 lines
493 B
Go
19 lines
493 B
Go
|
package keeper
|
||
|
|
||
|
import (
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
"github.com/kava-labs/kava/x/cdp/types"
|
||
|
)
|
||
|
|
||
|
// ---------- Module Parameters ----------
|
||
|
// GetParams returns the params from the store
|
||
|
func (k Keeper) GetParams(ctx sdk.Context) types.CdpParams {
|
||
|
var p types.CdpParams
|
||
|
k.paramSubspace.GetParamSet(ctx, &p)
|
||
|
return p
|
||
|
}
|
||
|
|
||
|
// SetParams sets params on the store
|
||
|
func (k Keeper) SetParams(ctx sdk.Context, cdpParams types.CdpParams) {
|
||
|
k.paramSubspace.SetParamSet(ctx, &cdpParams)
|
||
|
}
|