#[macro_export]
macro_rules! impl_client_v29__get_orphan_txs {
() => {
impl Client {
pub fn get_orphan_txs(&self) -> Result<GetOrphanTxs> { self.call("getorphantxs", &[]) }
}
};
}
#[macro_export]
macro_rules! impl_client_v29__get_orphan_txs_verbosity_1 {
() => {
impl Client {
pub fn get_orphan_txs_verbosity_1(&self) -> Result<GetOrphanTxsVerboseOne> {
self.call("getorphantxs", &[into_json(1)?])
}
}
};
}
#[macro_export]
macro_rules! impl_client_v29__get_orphan_txs_verbosity_2 {
() => {
impl Client {
pub fn get_orphan_txs_verbosity_2(&self) -> Result<GetOrphanTxsVerboseTwo> {
self.call("getorphantxs", &[into_json(2)?])
}
}
};
}