From e1906b065f79c7d8f6756968c2c73aa5ca0ec821 Mon Sep 17 00:00:00 2001 From: Guilherme Dantas Date: Mon, 4 Sep 2023 11:34:05 -0300 Subject: [PATCH] feat: add `read` permission to `input` folder --- onchain/rollups/foundry.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/onchain/rollups/foundry.toml b/onchain/rollups/foundry.toml index a3937772..0bdc00f8 100644 --- a/onchain/rollups/foundry.toml +++ b/onchain/rollups/foundry.toml @@ -7,7 +7,7 @@ cache_path = 'forge-cache' solc_version = '0.8.19' fs_permissions = [ { access = "read", path = "./test/foundry/dapp/helper/output/"}, - { access = "write", path = "./test/foundry/dapp/helper/input/"} + { access = "read-write", path = "./test/foundry/dapp/helper/input/"} ] [invariant] @@ -15,4 +15,4 @@ runs = 32 depth = 100 fail_on_revert = true -# See more config options https://book.getfoundry.sh/reference/config.html +# See more config options https://book.getfoundry.sh/reference/config/