29 lines
		
	
	
		
			719 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			719 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//! The `request` module defines the messages for the thin client.
 | 
						|
 | 
						|
use hash::Hash;
 | 
						|
use signature::{PublicKey, Signature};
 | 
						|
 | 
						|
#[cfg_attr(feature = "cargo-clippy", allow(large_enum_variant))]
 | 
						|
#[derive(Serialize, Deserialize, Debug, Clone, Copy)]
 | 
						|
pub enum Request {
 | 
						|
    GetBalance { key: PublicKey },
 | 
						|
    GetLastId,
 | 
						|
    GetTransactionCount,
 | 
						|
    GetSignature { signature: Signature },
 | 
						|
}
 | 
						|
 | 
						|
impl Request {
 | 
						|
    /// Verify the request is valid.
 | 
						|
    pub fn verify(&self) -> bool {
 | 
						|
        true
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
#[derive(Serialize, Deserialize, Debug)]
 | 
						|
pub enum Response {
 | 
						|
    Balance { key: PublicKey, val: i64 },
 | 
						|
    LastId { id: Hash },
 | 
						|
    TransactionCount { transaction_count: u64 },
 | 
						|
    SignatureStatus { signature_status: bool },
 | 
						|
}
 |