diff options
Diffstat (limited to 'eth')
-rw-r--r-- | eth/handler_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eth/handler_test.go b/eth/handler_test.go index 60a642130..66ff26809 100644 --- a/eth/handler_test.go +++ b/eth/handler_test.go @@ -638,6 +638,7 @@ func testDAOChallenge(t *testing.T, localForked, remoteForked bool, timeout bool if err := p2p.Send(peer.app, BlockHeadersMsg, []*types.Header{blocks[0].Header()}); err != nil { t.Fatalf("failed to answer challenge: %v", err) } + time.Sleep(100 * time.Millisecond) // Sleep to avoid the verification racing with the drops } else { // Otherwise wait until the test timeout passes time.Sleep(daoChallengeTimeout + 500*time.Millisecond) |