Browse Source

e2e: skip light clients when waiting for height (#6891)

pull/6894/head
Sam Kleinman 3 years ago
committed by GitHub
parent
commit
21b5e5931a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      test/e2e/runner/rpc.go

+ 4
- 0
test/e2e/runner/rpc.go View File

@ -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()


Loading…
Cancel
Save