Type Alias distance_oracle::runtime::utility::Call

source ·
pub type Call = Call;

Aliased Type§

enum Call {
    batch {
        calls: Vec<RuntimeCall>,
    },
    as_derivative {
        index: u16,
        call: Box<RuntimeCall>,
    },
    batch_all {
        calls: Vec<RuntimeCall>,
    },
    dispatch_as {
        as_origin: Box<OriginCaller>,
        call: Box<RuntimeCall>,
    },
    force_batch {
        calls: Vec<RuntimeCall>,
    },
    with_weight {
        call: Box<RuntimeCall>,
        weight: Weight,
    },
}

Variants§

§

batch

Fields

§

as_derivative

Fields

§index: u16
§

batch_all

Fields

§

dispatch_as

Fields

§as_origin: Box<OriginCaller>
§

force_batch

Fields

§

with_weight

Fields

§weight: Weight