mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-18 22:48:10 -07:00
global: private xpub support part 1
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
use brk_types::OutputType;
|
||||
use schemars::JsonSchema;
|
||||
use serde::Deserialize;
|
||||
|
||||
#[derive(Deserialize, JsonSchema)]
|
||||
pub struct AddrHashPrefixParam {
|
||||
pub addr_type: OutputType,
|
||||
pub prefix: String,
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
mod addr_after_txid_param;
|
||||
mod addr_hash_prefix_param;
|
||||
mod addr_param;
|
||||
mod block_count_param;
|
||||
mod blockhash_param;
|
||||
@@ -20,6 +21,7 @@ mod urpd_params;
|
||||
mod validate_addr_param;
|
||||
|
||||
pub use addr_after_txid_param::*;
|
||||
pub use addr_hash_prefix_param::*;
|
||||
pub use addr_param::*;
|
||||
pub use block_count_param::*;
|
||||
pub use blockhash_param::*;
|
||||
|
||||
Reference in New Issue
Block a user