WIP intermediate...

This commit is contained in:
Jae Kwon 2018-10-22 19:02:52 -07:00
parent ea565baa60
commit 1630c0f0f3
2 changed files with 8 additions and 1 deletions

View File

@ -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)},

View File

@ -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