Skip to main content

ethos_bitcoind/types/
mod.rs

1pub mod responses;
2pub use bitcoin::PublicKey;
3pub use responses::*;
4#[derive(Debug, serde::Serialize)]
5pub enum HashOrHeight {
6    Hash(bitcoin::BlockHash),
7    Height(u32),
8}
9pub type ShortChannelId = String;