diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-13 18:34:40 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-03 17:45:00 +0800 |
commit | fe947006ffb59f424811be47053754190933c170 (patch) | |
tree | 8474d5f57e383a7ff401de644f42b20fdd330f23 /test | |
parent | 37365478c19b1227261ba4246b4d2f06ef7bb522 (diff) | |
download | dexon-solidity-fe947006ffb59f424811be47053754190933c170.tar.gz dexon-solidity-fe947006ffb59f424811be47053754190933c170.tar.zst dexon-solidity-fe947006ffb59f424811be47053754190933c170.zip |
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" }, |