From c11d577d2cab101f75ac6aa30e23df5f9195e73a Mon Sep 17 00:00:00 2001 From: Richard Watts Date: Wed, 17 Jul 2024 12:36:32 +0100 Subject: [PATCH] (fix) Set a high gas limit to enable tests (in particular, the many signatures test) to pass --- .github/workflows/ci-bridge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-bridge.yml b/.github/workflows/ci-bridge.yml index 98b7e76..568bb6d 100644 --- a/.github/workflows/ci-bridge.yml +++ b/.github/workflows/ci-bridge.yml @@ -27,5 +27,5 @@ jobs: version: nightly - name: Run Foundry tests - run: forge test + run: forge test --gas-limit 2000000000000 # arbitrary, but seemingly no way to disable entirely. working-directory: smart-contracts