Browse Source

remove misbehaviors from e2e generator (#5629)

pull/5923/head
Callum Waters 4 years ago
committed by Tess Rinearson
parent
commit
6a7a431ba5
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      test/e2e/generator/generate.go

+ 5
- 2
test/e2e/generator/generate.go View File

@ -44,8 +44,11 @@ var (
"restart": 0.1,
}
nodeMisbehaviors = weightedChoice{
misbehaviorOption{"double-prevote"}: 1,
misbehaviorOption{}: 9,
// FIXME evidence disabled due to node panicing when not
// having sufficient block history to process evidence.
// https://github.com/tendermint/tendermint/issues/5617
// misbehaviorOption{"double-prevote"}: 1,
misbehaviorOption{}: 9,
}
)


Loading…
Cancel
Save