File format -- rev*.dat

5

0

Can anyone help me to find out the format of rev*.dat file?

There is an array with [F9BEB4D9 + 32byte number + variable raw data] for each element.

What is that 32b number? And may be how to understand what is the other variable data?

D L

Posted 2017-08-12T18:03:37.177

Reputation: 478

Answers

5

The rev*.dat files (the "undo files"), contain all UTXOs spent by the inputs of a block. It was introduced in Bitcoin Core 0.8, and contains a concatenation of records, one for each block. This mimicks the structure of the blk*.dat files which contain blocks.

Each block record consists of:

  • 4 bytes: network magic (0xf9,0xbe,0xb4,0xd9)
  • 4 bytes: size of the CBlockUndo record (LE32)
  • data_size bytes: CBlockUndo record
  • 32 bytes: double-SHA256 of the serialized CBlockUndo record

A CBlockUndo record consists of a serialized vector of CTxUndo records, one for each transaction in the block excluding the coinbase transaction. Vector serialization first writes a CompactSize-encoded length of the number of records (the transaction count - 1, in this case), and then serialized all the records themselves sequentially.

A CTxUndo record consists of a serialized vector of CTxInUndo records, one for each input in the transaction.

A CTxInUndo record consists of:

  • varint: 2*height (+1 if it was a coinbase output): the height of the block that created the spent UTXO
  • varint: creating transaction's version [only when height > 0]
  • CompressedScript: spent UTXO's scriptPubKey
  • CompressedAmount: spent UTXO's nValue

Until Bitcoin Core 0.14.x, the height is zero for all but the last output of a given transaction being spent. In Bitcoin Core 0.15 (to be released soon), it will be present for every spend.

For more information about the detailed encodings, see the comments in the Bitcoin Core source code: CompactSize, VarInt, CompressedScript, and CompressedAmount.

Pieter Wuille

Posted 2017-08-12T18:03:37.177

Reputation: 54 032

A CBlockUndo record consists of a serialized vector of CTxUndo records what does it mean? For example when size of CBlockUndo record = 1 and the record is 00. In this case dsha256 present in data and not equal to zero. It seems strangeD L 2017-08-13T10:47:51.433

Read the next sentence.Pieter Wuille 2017-08-13T17:09:44.760