From: Forrest Voight Date: Mon, 1 Jul 2013 00:44:16 +0000 (-0400) Subject: fix litecoin testnet target high for testing X-Git-Tag: 13.0~7 X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=895688934fa366db7ede218a83c0f0d6477cf8c1 fix litecoin testnet target high for testing --- diff --git a/p2pool/networks.py b/p2pool/networks.py index 892da6a..7c77f0b 100644 --- a/p2pool/networks.py +++ b/p2pool/networks.py @@ -73,8 +73,8 @@ nets = dict( IDENTIFIER='cca5e24ec6408b1e'.decode('hex'), PREFIX='ad9614f6466a39cf'.decode('hex'), P2P_PORT=19338, - MIN_TARGET=0, - MAX_TARGET=2**256//2000 - 1, + MIN_TARGET=2**256//50 - 1, + MAX_TARGET=2**256//50 - 1, PERSIST=False, WORKER_PORT=19327, BOOTSTRAP_ADDRS='forre.st vps.forre.st'.split(' '),