Skip to content

Commit

Permalink
last last change to the version check
Browse files Browse the repository at this point in the history
  • Loading branch information
forrestv committed Mar 20, 2012
1 parent 1167f84 commit f94818a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions p2pool/main.py
Expand Up @@ -61,9 +61,8 @@ def check():
if not (yield net.PARENT.RPC_CHECK)(bitcoind):
print >>sys.stderr, " Check failed! Make sure that you're connected to the right bitcoind with --bitcoind-rpc-port!"
raise deferral.RetrySilentlyException()
v = (yield bitcoind.rpc_getinfo())['version']
temp_work = yield getwork(bitcoind)
if not net.VERSION_CHECK((v//10000, v//100%100, v%100), temp_work):
if not net.VERSION_CHECK((yield bitcoind.rpc_getinfo())['version'], temp_work):
print >>sys.stderr, ' Bitcoin version too old! BIP16 support required! Upgrade to 0.6.0rc4 or greater!'
raise deferral.RetrySilentlyException()
defer.returnValue(temp_work)
Expand Down
6 changes: 3 additions & 3 deletions p2pool/networks.py
Expand Up @@ -23,7 +23,7 @@
WORKER_PORT=9332,
BOOTSTRAP_ADDRS='74.220.242.6:9334 93.97.192.93 66.90.73.83 67.83.108.0 219.84.64.174 24.167.17.248 109.74.195.142 83.211.86.49 89.78.212.44 94.23.34.145 168.7.116.243 72.14.191.28 94.174.40.189:9344'.split(' '),
ANNOUNCE_CHANNEL='#p2pool',
VERSION_CHECK=lambda (major, minor, patch), temp_work: major >= 7 or (major == 6 and patch >= 3) or (major == 5 and minor >= 4) or '/P2SH/' in temp_work['coinbaseflags'],
VERSION_CHECK=lambda v, temp_work: 50400 <= v < 60000 or 60003 <= v or '/P2SH/' in temp_work['coinbaseflags'],
SWITCH_TIME=1333238400,
),
bitcoin_testnet=math.Object(
Expand All @@ -41,7 +41,7 @@
WORKER_PORT=19332,
BOOTSTRAP_ADDRS='72.14.191.28'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda (major, minor, patch), temp_work: major >= 7 or (major == 6 and patch >= 3) or (major == 5 and minor >= 4) or '/P2SH/' in temp_work['coinbaseflags'],
VERSION_CHECK=lambda v, temp_work: 50400 <= v < 60000 or 60003 <= v or '/P2SH/' in temp_work['coinbaseflags'],
SWITCH_TIME=1333238400-60*60*24*7,
),

Expand Down Expand Up @@ -79,7 +79,7 @@
BOOTSTRAP_ADDRS='72.14.191.28'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda (major, minor, patch), temp_work: True,
SWITCH_TIME=1333238400-60*60*24*7,
SWITCH_TIME=1332276298,
),
)
for net_name, net in nets.iteritems():
Expand Down

0 comments on commit f94818a

Please sign in to comment.