mirror of
https://github.com/romanz/electrs.git
synced 2025-02-24 23:08:39 +01:00
Include blockhash on missing txid for merkle proof
This commit is contained in:
parent
1d4ab4f325
commit
52443f370f
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ impl Rpc {
|
||||||
debug!("txids cache miss: {}", blockhash);
|
debug!("txids cache miss: {}", blockhash);
|
||||||
let txids = self.daemon.get_block_txids(blockhash)?;
|
let txids = self.daemon.get_block_txids(blockhash)?;
|
||||||
match txids.iter().position(|current_txid| *current_txid == txid) {
|
match txids.iter().position(|current_txid| *current_txid == txid) {
|
||||||
None => bail!("missing tx {} for merkle proof", txid),
|
None => bail!("missing txid {} in block {}", txid, blockhash),
|
||||||
Some(position) => Ok(proof_to_value(&Proof::create(&txids, position))),
|
Some(position) => Ok(proof_to_value(&Proof::create(&txids, position))),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue