Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
get_contract_instance_event.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4#include <stdexcept>
5#include <string>
6
10
11namespace bb::avm2::simulation {
12
13struct GetContractInstanceException : public std::runtime_error {
14 explicit GetContractInstanceException(const std::string& message)
15 : std::runtime_error("Error in GetContractInstance: " + message)
16 {}
17};
18
20 // Interface columns
21 uint32_t execution_clk;
24 uint8_t member_enum;
25 uint32_t space_id;
28
29 // Instance retrieval results including all three members which are all needed for tracegen
30 // despite only needing the selected member in simulation.
35};
36
37} // namespace bb::avm2::simulation
uint32_t MemoryAddress
AvmFlavorSettings::FF FF
Definition field.hpp:10
STL namespace.