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 80cc1e3 commit 30cc917Copy full SHA for 30cc917
swapd/src/postgresql/chain_repository.rs
@@ -176,7 +176,7 @@ impl chain::ChainRepository for ChainRepository {
176
let mut txns: Vec<_> = tx_outputs
177
.iter()
178
.map(|o| o.utxo.outpoint.txid.to_string())
179
- .chain(tx_inputs.iter().map(|i| i.outpoint.txid.to_string()))
+ .chain(tx_inputs.iter().map(|i| i.spending_tx.to_string()))
180
.collect();
181
txns.dedup();
182
let block_hashes: Vec<_> = txns.iter().map(|_| block.hash.to_string()).collect();
0 commit comments