Merge PR #2526: Distribution fixes from simulation

This commit is contained in:
Christopher Goes
2018-10-18 21:58:57 +02:00
committed by GitHub
parent f527163d8a
commit e099491daa
8 changed files with 138 additions and 31 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ func invariants(app *GaiaApp) []simulation.Invariant {
banksim.NonnegativeBalanceInvariant(app.accountMapper),
distributionsim.AllInvariants(app.bankKeeper, app.distrKeeper, app.accountMapper),
govsim.AllInvariants(),
stakesim.AllInvariants(app.bankKeeper, app.stakeKeeper, app.accountMapper),
stakesim.AllInvariants(app.bankKeeper, app.stakeKeeper, app.distrKeeper, app.accountMapper),
slashingsim.AllInvariants(),
}
}