From 4822391b29fd21887d492b63ae11474d43f3326e Mon Sep 17 00:00:00 2001 From: ggrieco-tob Date: Mon, 16 May 2022 15:57:26 +0200 Subject: [PATCH] declared constants as internal --- EchidnaTest.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EchidnaTest.sol b/EchidnaTest.sol index 494c999..c0a3a1a 100644 --- a/EchidnaTest.sol +++ b/EchidnaTest.sol @@ -2,8 +2,8 @@ import "ABDKMath64x64.sol"; contract Test { using ABDKMath64x64 for int128; - int128 zero = ABDKMath64x64.fromInt(0); - int128 one = ABDKMath64x64.fromInt(1); + int128 internal zero = ABDKMath64x64.fromInt(0); + int128 internal one = ABDKMath64x64.fromInt(1); function add(int128 x, int128 y) public returns (int128) { return ABDKMath64x64.add(x, y);