Skip to content
Snippets Groups Projects
lib.rs 579 B
Newer Older
  • Learn to ignore specific revisions
  • Shaopeng Wang's avatar
    Shaopeng Wang committed
    //! Runtime API definition for oracle module.
    
    #![cfg_attr(not(feature = "std"), no_std)]
    
    // The `too_many_arguments` warning originates from `decl_runtime_apis` macro.
    #![allow(clippy::too_many_arguments)]
    
    // The `unnecessary_mut_passed` warning originates from `decl_runtime_apis` macro.
    #![allow(clippy::unnecessary_mut_passed)]
    
    Shaopeng Wang's avatar
    Shaopeng Wang committed
    use codec::Codec;
    
    use sp_std::prelude::Vec;
    
    Shaopeng Wang's avatar
    Shaopeng Wang committed
    
    sp_api::decl_runtime_apis! {
    	pub trait OracleApi<Key, Value> where
    		Key: Codec,
    		Value: Codec,
    	{
    
    		fn get_value(key: Key) -> Option<Value>;
    
    		fn get_all_values() -> Vec<(Key, Option<Value>)>;
    
    Shaopeng Wang's avatar
    Shaopeng Wang committed
    	}
    }