good morning!!!!

Skip to content
Snippets Groups Projects
Commit 98e0bedc authored by Javier Sagredo's avatar Javier Sagredo Committed by Felix Lange
Browse files

common/compiler: fixed testSource (#18978)

parent 05d21438
No related merge requests found
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment