Skip to content

Commit ca7c213

Browse files
committed
Missed renames
1 parent 203567b commit ca7c213

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/api.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ pub struct BlockSummary {
100100
#[derive(Debug, Clone, Deserialize, PartialEq, Eq)]
101101
pub struct AddressStats {
102102
pub address: String,
103-
pub chain_stats: AddressTxnSummary,
104-
pub mempool_stats: AddressTxnSummary,
103+
pub chain_stats: AddressTxsSummary,
104+
pub mempool_stats: AddressTxsSummary,
105105
}
106106

107107
#[derive(Debug, Copy, Clone, PartialEq, Eq, Deserialize)]

src/blocking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ impl BlockingClient {
329329
/// Get transaction history for the specified address/scripthash, sorted with newest first.
330330
/// Returns up to 50 mempool transactions plus the first 25 confirmed transactions.
331331
/// More can be requested by specifying the last txid seen by the previous query.
332-
pub fn get_address_txns(
332+
pub fn get_address_txs(
333333
&self,
334334
address: &Address,
335335
last_seen: Option<Txid>,

0 commit comments

Comments
 (0)