MCPcopy Create free account
hub / github.com/argotorg/solidity / storage

Method storage

test/EVMHost.cpp:1345–1354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1343}
1344
1345void 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
1356void EVMHostPrinter::balance()
1357{

Callers

nothing calls this directly

Calls 2

convertFromEVMCMethod · 0.80
get_storageMethod · 0.45

Tested by

no test coverage detected