pub trait TracingExtT {
// Provided method
fn after_call(
&self,
_contract_address: Vec<u8>,
_is_call: bool,
_input_data: Vec<u8>,
_result: Vec<u8>
) { ... }
}
Expand description
This trait describes a runtime extension that can be used to debug contract calls.