aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/release/contract.sol
diff options
context:
space:
mode:
Diffstat (limited to 'contracts/release/contract.sol')
-rw-r--r--contracts/release/contract.sol4
1 files changed, 3 insertions, 1 deletions
diff --git a/contracts/release/contract.sol b/contracts/release/contract.sol
index b9d94c756..2a28c5894 100644
--- a/contracts/release/contract.sol
+++ b/contracts/release/contract.sol
@@ -14,6 +14,8 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
+pragma solidity ^0.4.18;
+
// ReleaseOracle is an Ethereum contract to store the current and previous
// versions of the go-ethereum implementation. Its goal is to allow Geth to
// check for new releases automatically without the need to consult a central
@@ -58,7 +60,7 @@ contract ReleaseOracle {
// isSigner is a modifier to authorize contract transactions.
modifier isSigner() {
if (authorised[msg.sender]) {
- _
+ _;
}
}