bitcoind_request/
lib.rs

1pub mod client;
2pub mod command;
3// pub use command;
4use serde::{Deserialize, Serialize};
5#[derive(Debug)]
6pub struct BlockhashHexEncoded(pub String);
7
8#[derive(Serialize, Deserialize, Debug)]
9pub struct Blockhash(pub String);