Update compiler.js

pull/7/head
yann300 6 years ago committed by GitHub
parent 7990471b45
commit e556277ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      remix-tests/src/compiler.js

@ -12,7 +12,7 @@ String.prototype.regexIndexOf = function (regex, startpos) {
function writeTestAccountsContract (accounts) {
var testAccountContract = require('../sol/tests_accounts.sol.js')
// TODO: this will only work for solidity 0.5.0
var body = 'address payable[' + accounts.length + '] memory accounts;'
var body = 'address payable[' + accounts.length + '] memory accounts'
if (!accounts.length) body += ';'
else {
body += '= [' + accounts.map((value) => { return `address(${value})` }).join(',') + '];'

Loading…
Cancel
Save