Skip to content

Commit

Permalink
declared constants as internal
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrieco-tob committed May 16, 2022
1 parent bf5302f commit 4822391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EchidnaTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4822391

Please sign in to comment.