diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-20 16:49:46 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:54 +0800 |
commit | 4aa75b40157d749f81e91768313f46f39b0d23e4 (patch) | |
tree | 5513a7037b7552106fbaac3e89a36bc7e551dacd /test | |
parent | 05e689dc3225e5843635c8fc076548c5c91ac0c0 (diff) | |
download | dexon-4aa75b40157d749f81e91768313f46f39b0d23e4.tar dexon-4aa75b40157d749f81e91768313f46f39b0d23e4.tar.gz dexon-4aa75b40157d749f81e91768313f46f39b0d23e4.tar.bz2 dexon-4aa75b40157d749f81e91768313f46f39b0d23e4.tar.lz dexon-4aa75b40157d749f81e91768313f46f39b0d23e4.tar.xz dexon-4aa75b40157d749f81e91768313f46f39b0d23e4.tar.zst dexon-4aa75b40157d749f81e91768313f46f39b0d23e4.zip |
core: populate genesisAlloc in source code with DEXON genesis data
Diffstat (limited to 'test')
-rwxr-xr-x | test/run_test.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index 4d9d99947..8e678fc43 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -10,8 +10,7 @@ for i in $(seq 0 3); do datadir=$PWD/Dexon.$i rm -rf $datadir $GETH --datadir=$datadir init genesis.json - cp test$i.nodekey $datadir/geth/nodekey - $GETH --verbosity=4 --datadir=$datadir --port=$((28000 + $i)) --rpc --rpcaddr 127.0.0.1 --rpcport=$((8545 + $i)) --rpcapi=eth,net,web3,debug --rpcvhosts='*' --rpccorsdomain="http://localhost:8000,https://www.myetherwallet.com" > geth.$i.log 2>&1 & + $GETH --verbosity=4 --datadir=$datadir --nodekey=test$i.nodekey --port=$((28000 + $i)) --rpc --rpcaddr 127.0.0.1 --rpcport=$((8545 + $i)) --rpcapi=eth,net,web3,debug --rpcvhosts='*' --rpccorsdomain="http://localhost:8000,https://www.myetherwallet.com" > geth.$i.log 2>&1 & done tail -f geth.*.log |