We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40207d3 commit 924ac90Copy full SHA for 924ac90
testnet/stacks-node/src/chain_data.rs
@@ -56,7 +56,7 @@ struct UnconfirmedBlockCommit {
56
/// PoX payouts
57
pox_addrs: Vec<String>,
58
/// UTXO spent to create this block-commit
59
- input_vout: u32,
+ input_index: u32,
60
input_txid: String,
61
/// transaction ID
62
txid: String,
@@ -294,7 +294,7 @@ impl MinerStats {
294
memo: vec![],
295
commit_outs: decoded_pox_addrs,
296
burn_fee: unconfirmed_commit.burn,
297
- input: (input_txid, unconfirmed_commit.input_vout),
+ input: (input_txid, unconfirmed_commit.input_index),
298
apparent_sender: BurnchainSigner(unconfirmed_commit.address),
299
txid,
300
vtxindex: 1,
0 commit comments