test: eth: wait longer for chain to settle in block hash test (#11863)

I shrunk this down to 10 when I last deflaked this test, but I was too
optimistic. I'm bringing this back up to 50.

See https://gist.github.com/Stebalien/701039637361b3b9cb328d7c2d61beda
This commit is contained in:
Steven Allen 2024-04-09 13:20:59 -07:00 committed by GitHub
parent e68b762b40
commit 23b61c305a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ func TestEthBlockHashesCorrect_MultiBlockTipset(t *testing.T) {
ctx := context.Background()
// let the chain run a little bit longer to minimise the chance of reorgs
n2.WaitTillChain(ctx, kit.HeightAtLeast(head.Height()+10))
n2.WaitTillChain(ctx, kit.HeightAtLeast(head.Height()+50))
tsk := head.Key()
for i := 1; i <= int(head.Height()); i++ {