common/compiler: fixed testSource (#18978)

pull/18985/head
Javier Sagredo 6 years ago committed by Felix Lange
parent 05d21438de
commit 98e0bedcd7
  1. 3
      common/compiler/solidity_test.go

@ -23,9 +23,10 @@ import (
const (
testSource = `
pragma solidity >0.0.0;
contract test {
/// @notice Will multiply ` + "`a`" + ` by 7.
function multiply(uint a) returns(uint d) {
function multiply(uint a) public returns(uint d) {
return a * 7;
}
}

Loading…
Cancel
Save