From 5f7be780669394f0cf5e97f87a021ae806ede8b3 Mon Sep 17 00:00:00 2001 From: tycho garen Date: Thu, 21 Oct 2021 05:10:41 -0400 Subject: [PATCH] allow light nodes --- test/e2e/runner/rpc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/runner/rpc.go b/test/e2e/runner/rpc.go index 8e5898337..4098cfcbb 100644 --- a/test/e2e/runner/rpc.go +++ b/test/e2e/runner/rpc.go @@ -130,7 +130,7 @@ func waitForHeight(ctx context.Context, testnet *e2e.Testnet, height int64) (*ty // waitForNode waits for a node to become available and catch up to the given block height. func waitForNode(ctx context.Context, node *e2e.Node, height int64) (*rpctypes.ResultStatus, error) { - if node.Stateless() { + if node.Mode == e2e.ModeSeed { return nil, nil }