diff options
author | subtly <subtly@users.noreply.github.com> | 2015-05-11 23:40:01 +0800 |
---|---|---|
committer | subtly <subtly@users.noreply.github.com> | 2015-05-11 23:40:01 +0800 |
commit | f9955c8ba10332f9c2a674ffdfc447895c15b01a (patch) | |
tree | 8bba661f73b2e22858aece70c31eb9e9f5dfd83e /TestHelper.cpp | |
parent | 235cad6f19d7b40f42590fe5e20689d7ae9e8d54 (diff) | |
parent | 2cc62fbbfba89afaa2d83728ebb5b5c4488dd110 (diff) | |
download | dexon-solidity-f9955c8ba10332f9c2a674ffdfc447895c15b01a.tar dexon-solidity-f9955c8ba10332f9c2a674ffdfc447895c15b01a.tar.gz dexon-solidity-f9955c8ba10332f9c2a674ffdfc447895c15b01a.tar.bz2 dexon-solidity-f9955c8ba10332f9c2a674ffdfc447895c15b01a.tar.lz dexon-solidity-f9955c8ba10332f9c2a674ffdfc447895c15b01a.tar.xz dexon-solidity-f9955c8ba10332f9c2a674ffdfc447895c15b01a.tar.zst dexon-solidity-f9955c8ba10332f9c2a674ffdfc447895c15b01a.zip |
Merge branch 'develop' into whisper
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 144a1a28..96e11e02 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -305,7 +305,7 @@ void ImportTest::checkExpectedState(State const& _stateExpect, State const& _sta if (addressOptions.m_bHasStorage) { - map<u256, u256> stateStorage = _statePost.storage(a.first); + unordered_map<u256, u256> stateStorage = _statePost.storage(a.first); for (auto const& s: _stateExpect.storage(a.first)) CHECK(stateStorage[s.first] == s.second, "Check State: " << a.first << ": incorrect storage [" << s.first << "] = " << toHex(stateStorage[s.first]) << ", expected [" << s.first << "] = " << toHex(s.second)); |