diff options
author | Dimitry <dimitry@ethdev.com> | 2015-08-17 20:21:56 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethdev.com> | 2015-08-17 20:21:56 +0800 |
commit | 6bdc508e61194db65be022fc6475710345c2fcf1 (patch) | |
tree | 642349d1530a6fb9a7259be76e0cbfb992877100 | |
parent | 1d980ad65a37938417275713add4119c577eaa30 (diff) | |
download | dexon-solidity-6bdc508e61194db65be022fc6475710345c2fcf1.tar dexon-solidity-6bdc508e61194db65be022fc6475710345c2fcf1.tar.gz dexon-solidity-6bdc508e61194db65be022fc6475710345c2fcf1.tar.bz2 dexon-solidity-6bdc508e61194db65be022fc6475710345c2fcf1.tar.lz dexon-solidity-6bdc508e61194db65be022fc6475710345c2fcf1.tar.xz dexon-solidity-6bdc508e61194db65be022fc6475710345c2fcf1.tar.zst dexon-solidity-6bdc508e61194db65be022fc6475710345c2fcf1.zip |
BlockTests: restore corelibs and 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); |