forked from forks/go-ethereum
common/compiler: fixed testSource (#18978)
This commit is contained in:
parent
05d21438de
commit
98e0bedcd7
1 changed files with 2 additions and 1 deletions
|
|
@ -23,9 +23,10 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
testSource = `
|
testSource = `
|
||||||
|
pragma solidity >0.0.0;
|
||||||
contract test {
|
contract test {
|
||||||
/// @notice Will multiply ` + "`a`" + ` by 7.
|
/// @notice Will multiply ` + "`a`" + ` by 7.
|
||||||
function multiply(uint a) returns(uint d) {
|
function multiply(uint a) public returns(uint d) {
|
||||||
return a * 7;
|
return a * 7;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue