Type Alias distance_oracle::runtime::sudo::Call

source ·
pub type Call = Call;

Aliased Type§

enum Call {
    sudo {
        call: Box<RuntimeCall>,
    },
    sudo_unchecked_weight {
        call: Box<RuntimeCall>,
        weight: Weight,
    },
    set_key {
        new: MultiAddress<AccountId32, ()>,
    },
    sudo_as {
        who: MultiAddress<AccountId32, ()>,
        call: Box<RuntimeCall>,
    },
    remove_key,
}

Variants§

§

sudo

Fields

§

sudo_unchecked_weight

Fields

§weight: Weight
§

set_key

Fields

§new: MultiAddress<AccountId32, ()>
§

sudo_as

Fields

§who: MultiAddress<AccountId32, ()>
§

remove_key