Commit c21476c1 authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #5056 from ethereum-optimism/aj/discovery-timeout

op-node/p2p: Extend time out for discovery test
parents acf503bf cb8ccc80
......@@ -315,7 +315,7 @@ func TestDiscovery(t *testing.T) {
// B and C don't know each other yet, but both have A as a bootnode.
// It should only be a matter of time for them to connect, if they discover each other via A.
timeout := time.After(time.Second * 10)
timeout := time.After(time.Second * 60)
var peersOfB []peer.ID
// B should be connected to the bootnode (A) it used (it's a valid optimism node to connect to here)
// C should also be connected, although this one might take more time to discover
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment