Browse Source

e2e: light nodes should use builtin abci app (#7095) (#7096)

(cherry picked from commit befd669794)

Co-authored-by: Sam Kleinman <garen@tychoish.com>
pull/7104/head
mergify[bot] 3 years ago
committed by GitHub
parent
commit
1dfb3451ea
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      test/e2e/pkg/testnet.go

+ 3
- 0
test/e2e/pkg/testnet.go View File

@ -170,6 +170,9 @@ func LoadTestnet(file string) (*Testnet, error) {
if nodeManifest.Mode != "" {
node.Mode = Mode(nodeManifest.Mode)
}
if node.Mode == ModeLight {
node.ABCIProtocol = ProtocolBuiltin
}
if nodeManifest.Database != "" {
node.Database = nodeManifest.Database
}


Loading…
Cancel
Save