forked from ghostchain/ghost-node
8 lines
178 B
Rust
8 lines
178 B
Rust
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
sp_api::decl_runtime_apis! {
|
|
pub trait ExodusApi<NetworkId> {
|
|
fn verifying_key(network_id: NetworkId) -> Vec<u8>;
|
|
}
|
|
}
|