Browse Source

add debug message for the last block indexing; increase default limits.

main
D4708 3 years ago
parent
commit
c608cc9e0d
  1. 3
      follower.py

3
follower.py

@ -13,7 +13,7 @@ import sys, cPickle
dbFileName = "twisterDataGuard.pickle" dbFileName = "twisterDataGuard.pickle"
nodeUserName = "twisterdataguard" nodeUserName = "twisterdataguard"
blocksInStep = 10 blocksInStep = 100
class MyDb: class MyDb:
lastBlockHash = 0 lastBlockHash = 0
@ -65,6 +65,7 @@ if not dataLock:
if block.has_key("nextblockhash"): if block.has_key("nextblockhash"):
nextHash = block["nextblockhash"] nextHash = block["nextblockhash"]
else: else:
print "database is up to date..."
break break
cPickle.dump(db, open(dbFileName, "w")) cPickle.dump(db, open(dbFileName, "w"))

Loading…
Cancel
Save