| 1361 | } |
| 1362 | |
| 1363 | void EVMHostPrinter::selfdestructRecords() |
| 1364 | { |
| 1365 | for (auto const& record: m_host.recorded_selfdestructs) |
| 1366 | for (auto const& beneficiary: record.second) |
| 1367 | m_stateStream << "SELFDESTRUCT" |
| 1368 | << " BENEFICIARY " |
| 1369 | << m_host.convertFromEVMC(beneficiary) |
| 1370 | << std::endl; |
| 1371 | } |
| 1372 | |
| 1373 | void EVMHostPrinter::callRecords() |
| 1374 | { |
nothing calls this directly
no test coverage detected