EVMHost: Use std::map for storage so that slots are stored in some order.

This commit is contained in:
Bhargava Shastry
2021-03-12 09:39:15 +01:00
parent 0e22d0bd40
commit 788eb02825
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ using namespace solidity::util;
using namespace solidity::test;
using namespace evmc::literals;
using StorageMap = std::unordered_map<evmc::bytes32, evmc::storage_value>;
using StorageMap = std::map<evmc::bytes32, evmc::storage_value>;
evmc::VM& EVMHost::getVM(string const& _path)
{