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

(cherry picked from commit befd669794)

Co-authored-by: Sam Kleinman <garen@tychoish.com>
This commit is contained in:
mergify[bot]
2021-10-09 00:32:41 -04:00
committed by GitHub
parent 9f13b9b083
commit 1dfb3451ea

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
}