Skip to content

Commit 92aa731

Browse files
committed
Merge pull request bitcoin#6942
e482a7f Fix CCoins serialization documentation (Peter Josling)
2 parents 8332457 + e482a7f commit 92aa731

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/coins.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
* - VARINT(nHeight)
3030
*
3131
* The nCode value consists of:
32-
* - bit 1: IsCoinBase()
33-
* - bit 2: vout[0] is not spent
34-
* - bit 4: vout[1] is not spent
32+
* - bit 0: IsCoinBase()
33+
* - bit 1: vout[0] is not spent
34+
* - bit 2: vout[1] is not spent
3535
* - The higher bits encode N, the number of non-zero bytes in the following bitvector.
36-
* - In case both bit 2 and bit 4 are unset, they encode N-1, as there must be at
36+
* - In case both bit 1 and bit 2 are unset, they encode N-1, as there must be at
3737
* least one non-spent output).
3838
*
3939
* Example: 0104835800816115944e077fe7c803cfa57f29b36bf87c1d358bb85e
@@ -58,7 +58,7 @@
5858
*
5959
* - version = 1
6060
* - code = 9 (coinbase, neither vout[0] or vout[1] are unspent,
61-
* 2 (1, +1 because both bit 2 and bit 4 are unset) non-zero bitvector bytes follow)
61+
* 2 (1, +1 because both bit 1 and bit 2 are unset) non-zero bitvector bytes follow)
6262
* - unspentness bitvector: bits 2 (0x04) and 14 (0x4000) are set, so vout[2+2] and vout[14+2] are unspent
6363
* - vout[4]: 86ef97d5790061b01caab50f1b8e9c50a5057eb43c2d9563a4ee
6464
* * 86ef97d579: compact amount representation for 234925952 (2.35 BTC)

0 commit comments

Comments
 (0)