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.

Provided Methods§

source

fn after_call( &self, _contract_address: Vec<u8>, _is_call: bool, _input_data: Vec<u8>, _result: Vec<u8> )

Called after a contract call is made.

Implementors§