diff --git a/test/e2e/pkg/testnet.go b/test/e2e/pkg/testnet.go index ee6a283aa..d0770ce8d 100644 --- a/test/e2e/pkg/testnet.go +++ b/test/e2e/pkg/testnet.go @@ -187,13 +187,15 @@ func LoadTestnet(file string) (*Testnet, error) { LogLevel: manifest.LogLevel, QueueType: manifest.QueueType, } - if node.StartAt == testnet.InitialHeight { node.StartAt = 0 // normalize to 0 for initial nodes, since code expects this } if nodeManifest.Mode != "" { node.Mode = Mode(nodeManifest.Mode) } + if node.Mode == ModeLight { + node.ABCIProtocol = ProtocolBuiltin + } if nodeManifest.Database != "" { node.Database = nodeManifest.Database }