-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Bug Description
After a reorg on chain, BEEFs fail validation because of invalid BUMPs, making funds unspendable and any affected UTXO unusable.
Steps to Reproduce
- Run wallet-toolbox and fund it.
- Simulate reorg on chain.
- Try to spend funds.
Expected Behavior
BEEFs for affected UTXOs should be updated with the new block data and should pass validation.
Actual Behavior
UTXOs became unusable because of BEEF validation error.
Stack Traces or Screenshots
Environment
- OS: [MacOS]
- Node version: [v22.12.0]
@bsv/sdkversion: [v1.6.10]@bsv/wallet-toolboxversion: [v1.5.6]
Additional Information
The method processReorg() in /src/monitor/Monitor.ts:336 is empty and is not called anywhere.
/**
* Process reorg event received from Chaintracks
*
* Reorgs can move recent transactions to new blocks at new index positions.
* Affected transaction proofs become invalid and must be updated.
*
* It is possible for a transaction to become invalid.
*
* Coinbase transactions always become invalid.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
processReorg(depth: number, oldTip: BlockHeader, newTip: BlockHeader): void {
/* */
}Example query to BHS for a block height of 1691204 (testnet) returning 2 blocks, showing proof that there was a fork.
curl -X 'GET' \
'https://bhs-testnet.ops.tokenovate.com/api/v1/chain/header/byHeight?height=1691204' \
-H 'accept: application/json'
[
{
"hash": "0000000000f9da26cf80f2c664e7d35c1077572e6fbcf77240cfc1cd1060ed5c",
"version": 536870912,
"prevBlockHash": "000000000694bd959d09a5f5e115c218569bd71e6ed160785f3f37309241a3ec",
"merkleRoot": "d45b7d1a2f1ca67c864ac670911afdaa0d6715a39c444f4d13912dd613203855",
"creationTimestamp": 1756460161,
"difficultyTarget": 473696877,
"nonce": 1310892165,
"work": "18312763791"
},
{
"hash": "0000000021a63bd0434a31e3abc47a86fe7740a10a3007495477f0324a02573a",
"version": 536870912,
"prevBlockHash": "000000000694bd959d09a5f5e115c218569bd71e6ed160785f3f37309241a3ec",
"merkleRoot": "99edabd8f545e37d570c0c713f19a29a86681df58806fe580c72ed4a0d57c441",
"creationTimestamp": 1756460627,
"difficultyTarget": 473696877,
"nonce": 556043778,
"work": "18312763791"
}
]
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working