From ae29acf92b7cb6fa6e324c7f48336a42f8e1120e Mon Sep 17 00:00:00 2001 From: Bertrand Juglas Date: Mon, 25 Sep 2023 20:24:32 +0300 Subject: [PATCH] Update Gravity.sol to fix the minimum EVM version Following https://ethereum.stackexchange.com/questions/51124/parsererror-expected-token-semicolon-got-lparen advice after updating the minimum EVM version the compilation works again. --- contracts/Gravity.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/Gravity.sol b/contracts/Gravity.sol index f19f7430..de23c066 100644 --- a/contracts/Gravity.sol +++ b/contracts/Gravity.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.0; +pragma solidity ^0.4.21; contract GravatarRegistry { event NewGravatar(uint id, address owner, string displayName, string imageUrl);