mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-19 14:24:47 -07:00
12 lines
286 B
Rust
12 lines
286 B
Rust
use schemars::JsonSchema;
|
|
use serde::Deserialize;
|
|
|
|
use brk_types::Txid;
|
|
|
|
#[derive(Debug, Default, Deserialize, JsonSchema)]
|
|
#[serde(deny_unknown_fields)]
|
|
pub struct AddrTxidsParam {
|
|
/// Txid to paginate from (return transactions before this one)
|
|
pub after_txid: Option<Txid>,
|
|
}
|