Make all EVMC Host methods of MockedHost public

This commit is contained in:
Paweł Bylica 2019-12-11 21:26:01 +01:00
parent a22702ab0c
commit 278ab8b269
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF

View File

@ -133,10 +133,11 @@ public:
/// The record of all SELFDESTRUCTs from the selfdestruct() method.
std::vector<selfdestuct_record> recorded_selfdestructs;
protected:
private:
/// The copy of call inputs for the recorded_calls record.
std::vector<bytes> m_recorded_calls_inputs;
public:
/// Record an account access.
/// @param addr The address of the accessed account.
void record_account_access(const address& addr) const