Permit Yul interpreter vs Evmone storage comparison.

This commit is contained in:
Bhargava Shastry
2021-04-12 10:39:23 +02:00
parent 124db22f04
commit 033ee0e2bc
6 changed files with 20 additions and 7 deletions
+2 -1
View File
@@ -794,7 +794,8 @@ void EVMHostPrinter::storage()
{
for (auto const& [slot, value]: m_host.get_address_storage(m_account))
if (m_host.get_storage(m_account, slot))
m_stateStream << m_host.convertFromEVMC(slot)
m_stateStream << " "
<< m_host.convertFromEVMC(slot)
<< ": "
<< m_host.convertFromEVMC(value.value)
<< endl;