Browse Source

test: enable blockchain v2 in E2E testnet generator (#5533)

When #5499 and #5530 land, we can re-enable v2 in the E2E testnet generator (and thus the nightly E2E tests).
pull/5536/head
Erik Grinaker 4 years ago
committed by GitHub
parent
commit
9e6248c0d7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      test/e2e/generator/generate.go

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

@ -27,9 +27,8 @@ var (
nodeDatabases = uniformChoice{"goleveldb", "cleveldb", "rocksdb", "boltdb", "badgerdb"}
nodeABCIProtocols = uniformChoice{"unix", "tcp", "grpc", "builtin"}
nodePrivvalProtocols = uniformChoice{"file", "unix", "tcp"}
// FIXME disabled v1 due to https://github.com/tendermint/tendermint/issues/5444
// FIXME disabled v2 due to https://github.com/tendermint/tendermint/issues/5513
nodeFastSyncs = uniformChoice{"", "v0"} // "v1", "v2"
// FIXME v1 disabled due to https://github.com/tendermint/tendermint/issues/5444
nodeFastSyncs = uniformChoice{"", "v0", "v2"} // "v1",
nodeStateSyncs = uniformChoice{false, true}
nodePersistIntervals = uniformChoice{0, 1, 5}
nodeSnapshotIntervals = uniformChoice{0, 3}


Loading…
Cancel
Save