pub trait ExecuteDispatchable {
    fn execute_dispatchable(self) -> Result<(), DispatchError>;
}
Expand description

Starts the execution of the respective ink! message or constructor call.

Note

Implemented by the ink! smart contract message or constructor decoder.

Required Methods

Executes the ink! smart contract message or constructor.

Implementors