Transaction's block #960
-
|
Hi, The txid ( testnet ) is : ee8095c325dd13d4b6e91be6060328f03af4592cf1c0e98a4420a4639bc7ec8a Could it be one of ? Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Couple of bugs and an API gap here. Path forward: 1. Fix: return proof against the main-chain block, or 2. 3. Workaround until fixes ship: call We also found a related-shape issue in the validator where parent tx height uses |
Beta Was this translation helpful? Give feedback.

Couple of bugs and an API gap here. Path forward:
1.
/merkle_proofreturning orphan block — confirmed bug.util/merkleproof/merkle_proof.gopicksBlockIDs[0]with no main-chain filter. For your tx the orphan happens to be index 0. Same problem if a tx is only ever in an orphan block.Fix: return proof against the main-chain block, or
404 "transaction not in main chain"if none. Tracking in #961.2.
/txmetamissing main-chain indicator — your option 1.Will add
mainChainIndexto the response — single integer pointing at the canonical entry in the parallel arrays, or-1if tx is orphan-only / mempool. Avoids the per-block round-trip you'd otherwise need. Tracking in #962.3.
/tx/jsonmissin…