Browse Source

remove misbehaviors from e2e generator (#5629)

pull/5633/head
Callum Waters 4 years ago
committed by GitHub
parent
commit
9fe7b4fe77
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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