From 481256856766472a8108eb3880c60792ddf592cd Mon Sep 17 00:00:00 2001 From: Matt Curtis Date: Tue, 28 Nov 2023 15:19:31 +0000 Subject: [PATCH] L1 contracts: increase timeout for extra transactions --- testnet/launcher/l1contractdeployer/docker.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testnet/launcher/l1contractdeployer/docker.go b/testnet/launcher/l1contractdeployer/docker.go index 5ffedda3a1..1a8478c209 100644 --- a/testnet/launcher/l1contractdeployer/docker.go +++ b/testnet/launcher/l1contractdeployer/docker.go @@ -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 }