diff options
author | Gav Wood <g@ethdev.com> | 2015-08-19 19:09:23 +0800 |
---|---|---|
committer | Gav Wood <g@ethdev.com> | 2015-08-19 19:09:23 +0800 |
commit | 49f09719445f296ebe9ffed2b004f803e34b602c (patch) | |
tree | 642349d1530a6fb9a7259be76e0cbfb992877100 | |
parent | c6fb3390a3f2b2fc2fe4600feab117c7040655eb (diff) | |
parent | 6bdc508e61194db65be022fc6475710345c2fcf1 (diff) | |
download | dexon-solidity-49f09719445f296ebe9ffed2b004f803e34b602c.tar.gz dexon-solidity-49f09719445f296ebe9ffed2b004f803e34b602c.tar.zst dexon-solidity-49f09719445f296ebe9ffed2b004f803e34b602c.zip |
Merge pull request #2850 from winsvega/block2
BlockchainTests mining
-rw-r--r-- | TestHelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 15a5d563..e7633c5e 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -269,7 +269,7 @@ int ImportTest::compareStates(State const& _stateExpect, State const& _statePost for (auto const& a: _stateExpect.addresses()) { - CHECK(_statePost.addressInUse(a.first), "Filling Test: " << a.first << " missing expected address!"); + CHECK(_statePost.addressInUse(a.first), "Check State: " << a.first << " missing expected address!"); if (_statePost.addressInUse(a.first)) { AccountMask addressOptions(true); |