| 1343 | } |
| 1344 | |
| 1345 | void EVMHostPrinter::storage() |
| 1346 | { |
| 1347 | for (auto const& [slot, value]: m_host.get_address_storage(m_account)) |
| 1348 | if (m_host.get_storage(m_account, slot)) |
| 1349 | m_stateStream << " " |
| 1350 | << m_host.convertFromEVMC(slot) |
| 1351 | << ": " |
| 1352 | << m_host.convertFromEVMC(value.current) |
| 1353 | << std::endl; |
| 1354 | } |
| 1355 | |
| 1356 | void EVMHostPrinter::balance() |
| 1357 | { |
nothing calls this directly
no test coverage detected