From 895688934fa366db7ede218a83c0f0d6477cf8c1 Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Sun, 30 Jun 2013 20:44:16 -0400 Subject: [PATCH 1/1] fix litecoin testnet target high for testing --- p2pool/networks.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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(' '), -- 1.7.1