@@ -102,24 +102,24 @@ pub struct BlockSummary {
102102pub struct AddressStats {
103103 /// The address.
104104 pub address : String ,
105- /// The summary of transactions for this address information , already on chain
105+ /// The summary of transactions for this address, already on chain.
106106 pub chain_stats : AddressTxsSummary ,
107- /// The summary of transactions for this address information , currently in the mempool
107+ /// The summary of transactions for this address, currently in the mempool.
108108 pub mempool_stats : AddressTxsSummary ,
109109}
110110
111111/// Contains a summary of the transactions for an address.
112112#[ derive( Debug , Copy , Clone , PartialEq , Eq , Deserialize ) ]
113113pub struct AddressTxsSummary {
114- /// The number of funded transaction outputs, in
114+ /// The number of funded transaction outputs.
115115 pub funded_txo_count : u32 ,
116116 /// The sum of the funded transaction outputs, in satoshis.
117117 pub funded_txo_sum : u64 ,
118118 /// The number of spent transaction outputs.
119119 pub spent_txo_count : u32 ,
120120 /// The sum of the spent transaction outputs, in satoshis.
121121 pub spent_txo_sum : u64 ,
122- /// The total number of transactions
122+ /// The total number of transactions.
123123 pub tx_count : u32 ,
124124}
125125
0 commit comments