mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
102cc0fff3
* add new field upgrade_time_set_staking_rewards_per_second with intention of integrating into the disable inflation logic to set an initial staking reward time * when the disable inflation upgrade time occurs, set the staking rewards per second to the value specified by the new upgrade_time_set_staking_rewards_per_second. This will allow a decoupled implementation between the ugprade switching logic, and the core functionality of paying staking rewards from the pool * add staking rewards state to community keeper and community module genesis that is required to calculate and track staking reward payouts accross blocks * add implementation of staking reward payouts * remove unused error * touch up tests and add a test case that fully tests behavior when pool is drained * add function comments * refactor and pull out main calculation to private pure function with no dependence on keeper * zero out default parameters -- these are too chain specific to have useful defaults * small touch ups on comments, test cases * use correct Int from sdkmath, not old sdk types; update protonet genesis for new parmater * fix copy pasta comment * use bond denom from staking keeper instead of referncing ukava directly * add staking reward state for valid genesis * update kvtool genesis for new params and rewards state
53 lines
1.9 KiB
Go
53 lines
1.9 KiB
Go
package keeper
|
|
|
|
import (
|
|
"time"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// CheckAndDisableMintAndKavaDistInflation compares the disable inflation time and block time,
|
|
// and disables inflation if time is set and before block time. Inflation time is reset,
|
|
// so this method is safe to call more than once.
|
|
func (k Keeper) CheckAndDisableMintAndKavaDistInflation(ctx sdk.Context) {
|
|
// panic if params are not found since this can only be reached if chain state is corrupted or method is ran at an invalid height
|
|
params := k.mustGetParams(ctx)
|
|
|
|
// if disable inflation time is in the future or zero there is nothing to do, so return
|
|
if params.UpgradeTimeDisableInflation.IsZero() || params.UpgradeTimeDisableInflation.After(ctx.BlockTime()) {
|
|
return
|
|
}
|
|
|
|
// run disable inflation logic
|
|
k.disableInflation(ctx)
|
|
|
|
// reset disable inflation time to ensure next call is a no-op
|
|
params.UpgradeTimeDisableInflation = time.Time{}
|
|
// set staking rewards to provided intial value
|
|
params.StakingRewardsPerSecond = params.UpgradeTimeSetStakingRewardsPerSecond
|
|
k.SetParams(ctx, params)
|
|
|
|
}
|
|
|
|
// TODO: double check this is correct method for disabling inflation in kavadist without
|
|
// affecting rewards. In addition, inflation periods in kavadist should be removed.
|
|
func (k Keeper) disableInflation(ctx sdk.Context) {
|
|
logger := k.Logger(ctx)
|
|
logger.Info("disable inflation upgrade started")
|
|
|
|
// set x/min inflation to 0
|
|
mintParams := k.mintKeeper.GetParams(ctx)
|
|
mintParams.InflationMin = sdk.ZeroDec()
|
|
mintParams.InflationMax = sdk.ZeroDec()
|
|
k.mintKeeper.SetParams(ctx, mintParams)
|
|
logger.Info("x/mint inflation set to 0")
|
|
|
|
// disable kavadist inflation
|
|
kavadistParams := k.kavadistKeeper.GetParams(ctx)
|
|
kavadistParams.Active = false
|
|
k.kavadistKeeper.SetParams(ctx, kavadistParams)
|
|
logger.Info("x/kavadist inflation disabled")
|
|
|
|
logger.Info("disable inflation upgrade finished successfully!")
|
|
}
|