diff --git a/test/e2e/runner/rpc.go b/test/e2e/runner/rpc.go index 6df7ba87b..7b2549d48 100644 --- a/test/e2e/runner/rpc.go +++ b/test/e2e/runner/rpc.go @@ -43,7 +43,7 @@ func waitForHeight(testnet *e2e.Testnet, height int64) (*types.Block, *types.Blo if err != nil { continue } - if result.Block != nil && (maxResult == nil || result.Block.Height >= maxResult.Block.Height) { + if result.Block != nil && (maxResult == nil || result.Block.Height > maxResult.Block.Height) { maxResult = result lastIncrease = time.Now() }