From 3275049663901640eb2c37552f8c0e02ddf27342 Mon Sep 17 00:00:00 2001 From: Richard Watts <108257153+rrw-zilliqa@users.noreply.github.com> Date: Wed, 17 Jul 2024 12:52:31 +0100 Subject: [PATCH] (fix) Set a high gas limit to enable tests (in particular, the many signatures test) to pass (#5) --- .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