Skip to content

Commit

Permalink
L1 contracts: increase timeout for extra transactions (#1671)
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel authored Nov 28, 2023
1 parent 1d08a78 commit 5bf20d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testnet/launcher/l1contractdeployer/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ func (n *ContractDeployer) RetrieveL1ContractAddresses() (*node.NetworkConfig, e
}
defer cli.Close()

// make sure the container has finished execution
err = docker.WaitForContainerToFinish(n.containerID, time.Minute)
// make sure the container has finished execution (3 minutes allows time for L1 transactions to be mined)
err = docker.WaitForContainerToFinish(n.containerID, 3*time.Minute)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 5bf20d9

Please sign in to comment.