From ced16b4773216a51d7abddcc9c97ff78831f0f5f Mon Sep 17 00:00:00 2001 From: adjoly Date: Thu, 7 Aug 2025 10:41:55 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix:=20removed?= =?UTF-8?q?=20warning=20a=20compile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/test/Kanel42_token.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/test/Kanel42_token.t.sol b/code/test/Kanel42_token.t.sol index 49d4612..697068b 100644 --- a/code/test/Kanel42_token.t.sol +++ b/code/test/Kanel42_token.t.sol @@ -14,7 +14,7 @@ contract Kanel42TokenTest is Test { } // Test the initial supply of the token - function testInitialSupply() public { + function testInitialSupply() public view { assertEq(token.totalSupply(), 8000000000); assertEq(token.totalMinted(), 0); }