forked from tuxsoul/bitcoin-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
blkindex.py
55 lines (45 loc) · 1.25 KB
/
blkindex.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# Code for parsing the blkindex.dat file
#
from bsddb.db import *
import logging
from operator import itemgetter
import sys
import time
from BCDataStream import *
from base58 import public_key_to_bc_address
from util import short_hex
from deserialize import *
def dump_blkindex_summary(db_env):
db = DB(db_env)
try:
r = db.open("blkindex.dat", "main", DB_BTREE, DB_THREAD|DB_RDONLY)
except DBError:
r = True
if r is not None:
logging.error("Couldn't open blkindex.dat/main. Try quitting any running Bitcoin apps.")
sys.exit(1)
kds = BCDataStream()
vds = BCDataStream()
n_tx = 0
n_blockindex = 0
print("blkindex file summary:")
for (key, value) in db.items():
kds.clear(); kds.write(key)
vds.clear(); vds.write(value)
type = kds.read_string()
if type == "tx":
n_tx += 1
elif type == "blockindex":
n_blockindex += 1
elif type == "version":
version = vds.read_int32()
print(" Version: %d"%(version,))
elif type == "hashBestChain":
hash = vds.read_bytes(32)
print(" HashBestChain: %s"%(hash.encode('hex_codec'),))
else:
logging.warn("blkindex: unknown type '%s'"%(type,))
continue
print(" %d transactions, %d blocks."%(n_tx, n_blockindex))
db.close()