pub trait IntoBlockchainCall {
    type BlockchainCall;

    // Required method
    fn into_blockchain_call(self) -> Self::BlockchainCall;
}
Expand description

Converts a ContractCall or ContractDeploy into a scenario object that additonally contains gas costs and transaction-related data.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

source§

impl<OriginalResult> IntoBlockchainCall for ContractDeploy<DebugApi, OriginalResult>

Implementors§