Documentation ¶
Index ¶
- func CombinedFeeRequirement(globalFees, minGasPrices sdk.Coins) (sdk.Coins, error)
- func ContainZeroCoins(coins sdk.Coins) bool
- func Find(coins sdk.Coins, denom string) (bool, sdk.Coin)
- func GetMinGasPrice(ctx sdk.Context, gasLimit int64) sdk.Coins
- type FeeDecorator
- func (mfd FeeDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (newCtx sdk.Context, err error)
- func (mfd FeeDecorator) ContainsOnlyBypassMinFeeMsgs(ctx sdk.Context, msgs []sdk.Msg) bool
- func (mfd FeeDecorator) DefaultZeroGlobalFee(ctx sdk.Context) ([]sdk.DecCoin, error)
- func (mfd FeeDecorator) GetBypassMsgTypes(ctx sdk.Context) (res []string)
- func (mfd FeeDecorator) GetGlobalFee(ctx sdk.Context, feeTx sdk.FeeTx) (sdk.Coins, error)
- func (mfd FeeDecorator) GetMaxTotalBypassMinFeeMsgGasUsage(ctx sdk.Context) (res uint64)
- func (mfd FeeDecorator) GetTxFeeRequired(ctx sdk.Context, tx sdk.FeeTx) (sdk.Coins, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CombinedFeeRequirement ¶
CombinedFeeRequirement returns the global fee and min_gas_price combined and sorted. Both globalFees and minGasPrices must be valid, but CombinedFeeRequirement does not validate them, so it may return 0denom. if globalfee is empty, CombinedFeeRequirement return sdk.Coins{}
func ContainZeroCoins ¶
ContainZeroCoins returns true if the given coins are empty or contain zero coins, Note that the coins denoms must be validated, see sdk.ValidateDenom
Types ¶
type FeeDecorator ¶
type FeeDecorator struct { GlobalMinFeeParamSource globalfee.ParamSource StakingSubspace paramtypes.Subspace }
func NewFeeDecorator ¶
func NewFeeDecorator(globalfeeSubspace, stakingSubspace paramtypes.Subspace) FeeDecorator
func (FeeDecorator) AnteHandle ¶
func (mfd FeeDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (newCtx sdk.Context, err error)
AnteHandle implements the AnteDecorator interface
func (FeeDecorator) ContainsOnlyBypassMinFeeMsgs ¶
func (FeeDecorator) DefaultZeroGlobalFee ¶
DefaultZeroGlobalFee returns a zero coin with the staking module bond denom
func (FeeDecorator) GetBypassMsgTypes ¶
func (mfd FeeDecorator) GetBypassMsgTypes(ctx sdk.Context) (res []string)
func (FeeDecorator) GetGlobalFee ¶
GetGlobalFee returns the global fees for a given fee tx's gas (might also return 0denom if globalMinGasPrice is 0) sorted in ascending order. Note that ParamStoreKeyMinGasPrices type requires coins sorted.
func (FeeDecorator) GetMaxTotalBypassMinFeeMsgGasUsage ¶
func (mfd FeeDecorator) GetMaxTotalBypassMinFeeMsgGasUsage(ctx sdk.Context) (res uint64)
func (FeeDecorator) GetTxFeeRequired ¶
GetTxFeeRequired returns the required fees for the given FeeTx. In case the FeeTx's mode is CheckTx, it returns the combined requirements of local min gas prices and global fees. Otherwise, in DeliverTx, it returns the global fee.