From bc2ac4e1ebb0d5fc8df975eaaa95c403fa74528a Mon Sep 17 00:00:00 2001 From: adjoly Date: Thu, 7 Aug 2025 19:30:38 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=E2=99=BB=EF=B8=8F=E3=80=8D=20refactor?= =?UTF-8?q?:=20moved=20every=20folder=20to=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/test/Kanel42_token.t.sol | 2 +- foundry.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/test/Kanel42_token.t.sol b/code/test/Kanel42_token.t.sol index 7746969..3711caf 100644 --- a/code/test/Kanel42_token.t.sol +++ b/code/test/Kanel42_token.t.sol @@ -56,7 +56,7 @@ contract Kanel42TokenTest is Test { vm.deal(address(this), 0.01 ether); token.mint{ value: 0.01 ether }(); - uint256 initialBalance = token.balanceOf(address(this)); + uint256 initialBalance = token.balanceOf(address(this)); // Burn tokens token.burn(burnAmount); diff --git a/foundry.toml b/foundry.toml index ac4b60a..a155e99 100644 --- a/foundry.toml +++ b/foundry.toml @@ -1,8 +1,9 @@ [profile.default] src = "code" -out = "out" +out = "code/out" test = "code/test" libs = ["node_modules", "code/lib"] +cache_path = "code/cache" solc = '0.8.28' # Enable or disable the optimizer optimizer = true