Type Alias distance_oracle::runtime::system::Call
source · pub type Call = Call;
Aliased Type§
enum Call {
remark {
remark: Vec<u8>,
},
set_heap_pages {
pages: u64,
},
set_code {
code: Vec<u8>,
},
set_code_without_checks {
code: Vec<u8>,
},
set_storage {
items: Vec<(Vec<u8>, Vec<u8>)>,
},
kill_storage {
keys: Vec<Vec<u8>>,
},
kill_prefix {
prefix: Vec<u8>,
subkeys: u32,
},
remark_with_event {
remark: Vec<u8>,
},
authorize_upgrade {
code_hash: H256,
},
authorize_upgrade_without_checks {
code_hash: H256,
},
apply_authorized_upgrade {
code: Vec<u8>,
},
}