Type Alias cosmwasm_std::testing::MockQuerierCustomHandlerResult

source ·
pub type MockQuerierCustomHandlerResult = SystemResult<ContractResult<Binary>>;
Expand description

The same type as cosmwasm-std’s QuerierResult, but easier to reuse in cosmwasm-vm. It might diverge from QuerierResult at some point.

Aliased Type§

enum MockQuerierCustomHandlerResult {
    Ok(ContractResult<Binary>),
    Err(SystemError),
}

Variants§