diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-03-13 02:03:07 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-03-13 02:03:07 +0800 |
commit | 6243d0048bb9424388bca6970a11a865b18239c3 (patch) | |
tree | a7f3d8c5525b0d0961e0194763c85af25635b91e | |
parent | 363d41738470ad4754973352b18114641c345c0a (diff) | |
download | dexon-solidity-6243d0048bb9424388bca6970a11a865b18239c3.tar dexon-solidity-6243d0048bb9424388bca6970a11a865b18239c3.tar.gz dexon-solidity-6243d0048bb9424388bca6970a11a865b18239c3.tar.bz2 dexon-solidity-6243d0048bb9424388bca6970a11a865b18239c3.tar.lz dexon-solidity-6243d0048bb9424388bca6970a11a865b18239c3.tar.xz dexon-solidity-6243d0048bb9424388bca6970a11a865b18239c3.tar.zst dexon-solidity-6243d0048bb9424388bca6970a11a865b18239c3.zip |
style
-rw-r--r-- | checkRandomStateTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checkRandomStateTest.cpp b/checkRandomStateTest.cpp index 601ef1ca..17e785f6 100644 --- a/checkRandomStateTest.cpp +++ b/checkRandomStateTest.cpp @@ -215,10 +215,10 @@ bool doStateTest(mValue& _v) if (expectedAddrIt == expectedAddrs.end()) return 1; } - if(expectedAddrs != resultAddrs) + if (expectedAddrs != resultAddrs) return 1; #endif - if(theState.rootHash() != h256(o["postStateRoot"].get_str())) + if (theState.rootHash() != h256(o["postStateRoot"].get_str())) { cout << "wrong post state root" << endl; return 1; |