Type Alias cosmwasm_std::QuerierResult
source · pub type QuerierResult = SystemResult<ContractResult<Binary>>;
Expand description
A short-hand alias for the two-level query result (1. accessing the contract, 2. executing query in the contract)
Aliased Type§
enum QuerierResult {
Ok(ContractResult<Binary>),
Err(SystemError),
}