aboutsummaryrefslogtreecommitdiffstats
path: root/RPCTests
diff options
context:
space:
mode:
authorDimitry <dimitry@ethereum.org>2017-10-10 20:10:25 +0800
committerDimitry <dimitry@ethereum.org>2017-10-10 20:10:25 +0800
commitb6011c3fb567d7178915574de0a8d4b5331fe725 (patch)
tree8657c9379e68538faf72139f6a6bb6d4341dd8b7 /RPCTests
parentb6aa0947a8e20f4140dd2647882791be6ceb2ac5 (diff)
downloaddexon-tests-b6011c3fb567d7178915574de0a8d4b5331fe725.tar.gz
dexon-tests-b6011c3fb567d7178915574de0a8d4b5331fe725.tar.zst
dexon-tests-b6011c3fb567d7178915574de0a8d4b5331fe725.zip
set author for nightly builds RPC tests
Diffstat (limited to 'RPCTests')
-rw-r--r--RPCTests/modules/ethconsole.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/RPCTests/modules/ethconsole.js b/RPCTests/modules/ethconsole.js
index d990bcf38..dfc5181cd 100644
--- a/RPCTests/modules/ethconsole.js
+++ b/RPCTests/modules/ethconsole.js
@@ -15,7 +15,8 @@ startNode: function startNode (nodeExec, dataDir, genesisPath, listeningPort, fi
'--ipcpath', dataDir + '/geth.ipc',
'--ipc',
'--listen', listeningPort,
- '--test'
+ '--test',
+ '-a', '0x1122334455667788991011121314151617181920'
]
utils.cLog('starting node')
utils.cLog(nodeExec + ' ' + options.join(' '))
@@ -82,7 +83,7 @@ runScriptOnNode: function runScriptOnNode(dataDir, jsScript, args, finished)
else
{
var script = new vm.Script(data);
- - script.runInThisContext();
+ script.runInThisContext();
}
});
},