EVMC
evmc::MockedHost::log_record Struct Reference

LOG record. More...

#include <mocked_host.hpp>

Public Member Functions

bool operator== (const log_record &other) const noexcept
 Equal operator.
 

Public Attributes

address creator
 The address of the account which created the log.
 
bytes data
 The data attached to the log.
 
std::vector< bytes32topics
 The log topics.
 

Detailed Description

LOG record.

Definition at line 82 of file mocked_host.hpp.

Member Function Documentation

◆ operator==()

bool evmc::MockedHost::log_record::operator== ( const log_record other) const
inlinenoexcept

Equal operator.

Definition at line 94 of file mocked_host.hpp.

95 {
96 return creator == other.creator && data == other.data && topics == other.topics;
97 }
address creator
The address of the account which created the log.
Definition: mocked_host.hpp:85
std::vector< bytes32 > topics
The log topics.
Definition: mocked_host.hpp:91
bytes data
The data attached to the log.
Definition: mocked_host.hpp:88

Member Data Documentation

◆ creator

address evmc::MockedHost::log_record::creator

The address of the account which created the log.

Definition at line 85 of file mocked_host.hpp.

◆ data

bytes evmc::MockedHost::log_record::data

The data attached to the log.

Definition at line 88 of file mocked_host.hpp.

◆ topics

std::vector<bytes32> evmc::MockedHost::log_record::topics

The log topics.

Definition at line 91 of file mocked_host.hpp.


The documentation for this struct was generated from the following file: