#[macro_export]
macro_rules! impl_client_v18__get_received_by_label {
() => {
impl Client {
pub fn get_received_by_label(&self, label: &str) -> Result<GetReceivedByLabel> {
self.call("getreceivedbylabel", &[label.into()])
}
}
};
}
#[macro_export]
macro_rules! impl_client_v18__list_received_by_label {
() => {
impl Client {
pub fn list_received_by_label(&self) -> Result<ListReceivedByLabel> {
self.call("listreceivedbylabel", &[])
}
}
};
}
#[macro_export]
macro_rules! impl_client_v18__list_wallet_dir {
() => {
impl Client {
pub fn list_wallet_dir(&self) -> Result<ListWalletDir> {
self.call("listwalletdir", &[])
}
}
};
}