x/bank: skip failing BenchmarkOneBankSend* to avoid blocking benchmarking (#10033)

This commit is contained in:
Emmanuel T Odeke 2021-08-30 12:34:18 -07:00 committed by GitHub
parent ccd95f3ed3
commit 07453203cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,8 @@ import (
var moduleAccAddr = authtypes.NewModuleAddress(stakingtypes.BondedPoolName)
func BenchmarkOneBankSendTxPerBlock(b *testing.B) {
b.Skip("Skipping benchmark with buggy code reported at https://github.com/cosmos/cosmos-sdk/issues/10023")
b.ReportAllocs()
// Add an account at genesis
acc := authtypes.BaseAccount{
@ -61,6 +63,8 @@ func BenchmarkOneBankSendTxPerBlock(b *testing.B) {
}
func BenchmarkOneBankMultiSendTxPerBlock(b *testing.B) {
b.Skip("Skipping benchmark with buggy code reported at https://github.com/cosmos/cosmos-sdk/issues/10023")
b.ReportAllocs()
// Add an account at genesis
acc := authtypes.BaseAccount{