Merge pull request #1616 from ethereum/yann300-patch-6

Update example-contracts.js, add pragma
pull/1/head
yann300 6 years ago committed by GitHub
commit 78bcec3e32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/app/editor/example-contracts.js

@ -1,6 +1,7 @@
'use strict'
var ballot = `contract Ballot {
var ballot = `pragma solidity >=0.4.22 <0.6.0;
contract Ballot {
struct Voter {
uint weight;

Loading…
Cancel
Save