diff --git a/remix-tests/sol/tests_accounts.sol.js b/remix-tests/sol/tests_accounts.sol.js index bab531cc46..c32f656621 100644 --- a/remix-tests/sol/tests_accounts.sol.js +++ b/remix-tests/sol/tests_accounts.sol.js @@ -1,7 +1,7 @@ module.exports = `pragma solidity ^0.5.0; library TestsAccounts { - function getAccount(uint index) returns (address) { + function getAccount(uint index) public returns (address) { >accounts< return accounts[index]; }