WIP intermediate...
This commit is contained in:
parent
ea565baa60
commit
1630c0f0f3
|
@ -112,7 +112,7 @@ func testAndRunTxs(app *GaiaApp) []simulation.WeightedOperation {
|
|||
// {50, distributionsim.SimulateMsgWithdrawValidatorRewardsAll(app.accountMapper, app.distrKeeper)},
|
||||
//{5, govsim.SimulateSubmittingVotingAndSlashingForProposal(app.govKeeper, app.stakeKeeper)},
|
||||
//{100, govsim.SimulateMsgDeposit(app.govKeeper, app.stakeKeeper)},
|
||||
{100, stakesim.SimulateMsgCreateValidator(app.accountMapper, app.stakeKeeper)},
|
||||
//{100, stakesim.SimulateMsgCreateValidator(app.accountMapper, app.stakeKeeper)},
|
||||
//{5, stakesim.SimulateMsgEditValidator(app.stakeKeeper)},
|
||||
{100, stakesim.SimulateMsgDelegate(app.accountMapper, app.stakeKeeper)},
|
||||
//{100, stakesim.SimulateMsgBeginUnbonding(app.accountMapper, app.stakeKeeper)},
|
||||
|
|
|
@ -94,6 +94,13 @@ func (k Keeper) ApplyAndReturnValidatorSetUpdates(ctx sdk.Context) (updates []ab
|
|||
// validator still in the validator set, so delete from the copy
|
||||
delete(last, operatorBytes)
|
||||
|
||||
fmt.Println(
|
||||
cmn.Cyan(
|
||||
fmt.Sprintf("TOTAL ADD %v pow: %v",
|
||||
operator, newPower),
|
||||
),
|
||||
)
|
||||
|
||||
// keep count
|
||||
count++
|
||||
totalPower += newPower
|
||||
|
|
Loading…
Reference in New Issue