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

Loading…
Cancel
Save