-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #868: [RPC] add vout.n sequence number to decoderawtransaction
f20b416 [RPC] add vout.n sequence number to decoderawtransaction (Cave Spectre) Pull request description: ### Problem When looking at raw transactions in the block chain, the vout sequence number is not shown ### Root Cause Wasn't implemented ### Solution Implement it ### Testing Transactions now have a "vout.n" in vout sections, showing what the output sequence is [for use as input to raw transactions]. ``` { "type": "standard", "value": 345600.00000000, "valueSat": 34560000000000, "vout.n": 2, "scriptPubKey": { "asm": "OP_HASH160 4874bc3b94c4c85cf858670fef39d38fbe0d7b8b OP_EQUAL", "hex": "a9144874bc3b94c4c85cf858670fef39d38fbe0d7b8b87", "reqSigs": 1, "type": "scripthash", "addresses": [ "38J8RGLetRUNEXycBMPg8oZqLt4bB9hCbt" ] } ``` Tree-SHA512: 5b333582e529adf463ad230127e7446f37738912210e90a13e8c2db1956a1710725961f136af716b72f16998fe7834d42c2a56290b37e10074b7248fa4452ea6
- Loading branch information
Showing
2 changed files
with
32 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters