Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/src/model/blockchain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ pub struct GetBlockStats {
pub total_weight: Option<Weight>,
/// The fee total.
pub total_fee: Option<Amount>,
/// The number of transactions (excluding coinbase).
/// The number of transactions (including coinbase).
pub txs: Option<u32>,
/// The increase/decrease in the number of unspent outputs.
pub utxo_increase: Option<i32>,
Expand Down
2 changes: 1 addition & 1 deletion types/src/v17/blockchain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ pub struct GetBlockStats {
/// The fee total.
#[serde(rename = "totalfee")]
pub total_fee: Option<u64>,
/// The number of transactions (excluding coinbase).
/// The number of transactions (including coinbase).
pub txs: Option<i64>,
/// The increase/decrease in the number of unspent outputs.
pub utxo_increase: Option<i32>,
Expand Down
2 changes: 1 addition & 1 deletion types/src/v25/blockchain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ pub struct GetBlockStats {
/// The fee total.
#[serde(rename = "totalfee")]
pub total_fee: Option<u64>,
/// The number of transactions (excluding coinbase).
/// The number of transactions (including coinbase).
pub txs: Option<i64>,
/// The increase/decrease in the number of unspent outputs.
pub utxo_increase: Option<i32>,
Expand Down
Loading