bitcoinjs / fast-dat-parser

Superfast blockchain parser for stats
MIT License
74 stars 26 forks source link

transforms/leveldb: Use *_ID hashes over *_HASH #5

Closed dcousens closed 7 years ago

dcousens commented 7 years ago

The *_HASH fields used now are in regular byte-order. This makes interaction with the data by users (who use reverse byte-order hashes) difficult.

Staying with *_ID standard being the reverse byte-order equivalent, we should change over to *_ID for the purposes of the leveldb data, to avoid encoding/decoding pains.

dcousens commented 7 years ago

Changed in e024675