Files
tendermint/test/e2e/runner/wait.go
Marko Baricevic 798ac145f9 e2e & maverick
2021-02-04 15:16:31 +01:00

29 lines
679 B
Go

package main
import (
"fmt"
"time"
e2e "github.com/tendermint/tendermint/test/e2e/pkg"
)
// Wait waits for a number of blocks to be produced, and for all nodes to catch
// up with it.
func Wait(testnet *e2e.Testnet, blocks uint64) error {
block, _, err := waitForHeight(testnet, 0)
if err != nil {
return err
}
return WaitUntil(testnet, block.Height+blocks)
}
// WaitUntil waits until a given height has been reached.
func WaitUntil(testnet *e2e.Testnet, height uint64) error {
logger.Info(fmt.Sprintf("Waiting for all nodes to reach height %v...", height))
_, err := waitForAllNodes(testnet, height, 20*time.Second)
if err != nil {
return err
}
return nil
}