mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 13:27:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			639 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			639 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package keeper
 | 
						|
 | 
						|
import (
 | 
						|
	sdk "github.com/cosmos/cosmos-sdk/types"
 | 
						|
 | 
						|
	"github.com/kava-labs/kava/x/hard/types"
 | 
						|
)
 | 
						|
 | 
						|
// GetParams returns the params from the store
 | 
						|
func (k Keeper) GetParams(ctx sdk.Context) types.Params {
 | 
						|
	var p types.Params
 | 
						|
	k.paramSubspace.GetParamSet(ctx, &p)
 | 
						|
	return p
 | 
						|
}
 | 
						|
 | 
						|
// SetParams sets params on the store
 | 
						|
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
 | 
						|
	k.paramSubspace.SetParamSet(ctx, ¶ms)
 | 
						|
}
 | 
						|
 | 
						|
// GetMinimumBorrowUSDValue returns the minimum borrow USD value
 | 
						|
func (k Keeper) GetMinimumBorrowUSDValue(ctx sdk.Context) sdk.Dec {
 | 
						|
	params := k.GetParams(ctx)
 | 
						|
	return params.MinimumBorrowUSDValue
 | 
						|
}
 |