From c2f5d12a2962016aaf71dd8b21275abc8f8f6f1a Mon Sep 17 00:00:00 2001 From: Kevin Halliday Date: Tue, 12 Nov 2024 11:40:48 -0500 Subject: [PATCH] chore(e2e): increase admin fb signing timeout --- e2e/app/admin/common.go | 4 ++-- e2e/fbproxy/app/app.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/app/admin/common.go b/e2e/app/admin/common.go index 7a9868119..bdb17196d 100644 --- a/e2e/app/admin/common.go +++ b/e2e/app/admin/common.go @@ -216,8 +216,8 @@ func runForge(ctx context.Context, rpc string, input []byte, broadcast bool, sen args = append(args, "--private-keys", strings.Join(dedup(anvilPks), ",")) } else { // else, we use --unlocked flag, to send unsigned eth_sendTransaction requests - // with 5 minute timeout, to allow for fireblocks signing. - args = append(args, "--timeout", "300", "--unlocked") + // with 15 minute timeout, to allow for fireblocks signing. + args = append(args, "--timeout", "900", "--unlocked") } return execCmd(ctx, dir, "forge", args...) diff --git a/e2e/fbproxy/app/app.go b/e2e/fbproxy/app/app.go index 18458544d..7ce28fe77 100644 --- a/e2e/fbproxy/app/app.go +++ b/e2e/fbproxy/app/app.go @@ -117,7 +117,7 @@ func newHTTPServer(ctx context.Context, cfg Config) (*http.Server, error) { return &http.Server{ ReadHeaderTimeout: 30 * time.Second, IdleTimeout: 30 * time.Second, - WriteTimeout: 5 * time.Minute, // large timeout, to allow for fb tx mpc signing. + WriteTimeout: 15 * time.Minute, // large timeout, to allow for fb tx mpc signing. Handler: http.HandlerFunc(proxy.Proxy), }, nil }