From 21b5e5931a61393b8507f8c5905849f49e077ea1 Mon Sep 17 00:00:00 2001 From: Sam Kleinman Date: Fri, 3 Sep 2021 10:19:15 -0400 Subject: [PATCH] e2e: skip light clients when waiting for height (#6891) --- test/e2e/runner/rpc.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/e2e/runner/rpc.go b/test/e2e/runner/rpc.go index 52c009caa..277962581 100644 --- a/test/e2e/runner/rpc.go +++ b/test/e2e/runner/rpc.go @@ -28,6 +28,10 @@ func waitForHeight(testnet *e2e.Testnet, height int64) (*types.Block, *types.Blo if node.Mode == e2e.ModeSeed { continue } + if node.Mode == e2e.ModeLight { + continue + } + client, ok := clients[node.Name] if !ok { client, err = node.Client()