use fuel_types::ContractId;
pub struct LogData {
pub contract_id: ContractId,
pub data: Vec<u8>,
pub rb: u64,
pub len: u64,
pub ptr: u64,
}
LogData
receipt is generated when calling log()
in a Sway contract on a reference type; this includes all types except non-reference types. data
field will include the logged value as a hexadecimal.
rb
field will contain a unique ID that can be used to look up the logged data type. LogData
in the Fuel protocol ABI spec You can handle functions that produce a LogData
receipt type by using the logged type as a function parameter.
Note: the example below will run both when the type
MyStruct
is logged as well as whenMyStruct
is returned from a function.
fn handle_log_data(data: MyStruct) {
// handle the emitted LogData receipt
}