diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-03 18:35:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-03 18:35:51 +0800 |
commit | 5c284589202c261c06dadfe7a598cc23752e8e48 (patch) | |
tree | 365fa50e5c4af21b6cdf588680cf2b2768ab2b0f /test | |
parent | 9e101db45fddc0e8ec8efd564cd4685ebc22b639 (diff) | |
parent | e952946b229c626d677aed00d8dcb552292f674c (diff) | |
download | dexon-solidity-5c284589202c261c06dadfe7a598cc23752e8e48.tar dexon-solidity-5c284589202c261c06dadfe7a598cc23752e8e48.tar.gz dexon-solidity-5c284589202c261c06dadfe7a598cc23752e8e48.tar.bz2 dexon-solidity-5c284589202c261c06dadfe7a598cc23752e8e48.tar.lz dexon-solidity-5c284589202c261c06dadfe7a598cc23752e8e48.tar.xz dexon-solidity-5c284589202c261c06dadfe7a598cc23752e8e48.tar.zst dexon-solidity-5c284589202c261c06dadfe7a598cc23752e8e48.zip |
Merge pull request #2896 from ethereum/test-genesis
Format chainparams fields properly in tests
Diffstat (limited to 'test')
-rw-r--r-- | test/RPCSession.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/RPCSession.cpp b/test/RPCSession.cpp index c4fbfefb..768c8c4b 100644 --- a/test/RPCSession.cpp +++ b/test/RPCSession.cpp @@ -217,11 +217,11 @@ void RPCSession::test_setChainParams(vector<string> const& _accounts) { "sealEngine": "NoProof", "params": { - "accountStartNonce": "0x", + "accountStartNonce": "0x00", "maximumExtraDataSize": "0x1000000", "blockReward": "0x", - "allowFutureBlocks": "1", - "homsteadForkBlock": "0x00", + "allowFutureBlocks": true, + "homesteadForkBlock": "0x00", "EIP150ForkBlock": "0x00", "EIP158ForkBlock": "0x00" }, |