Skip to content

Commit

Permalink
increased maximum worker difficulty 1000x
Browse files Browse the repository at this point in the history
  • Loading branch information
forrestv committed Aug 12, 2014
1 parent 162a8d5 commit 9dd7098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2pool/bitcoin/networks/bitcoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
BLOCK_EXPLORER_URL_PREFIX = 'https://blockchain.info/block/'
ADDRESS_EXPLORER_URL_PREFIX = 'https://blockchain.info/address/'
TX_EXPLORER_URL_PREFIX = 'https://blockchain.info/tx/'
SANE_TARGET_RANGE = (2**256//2**32//1000 - 1, 2**256//2**32 - 1)
SANE_TARGET_RANGE = (2**256//2**32//1000000 - 1, 2**256//2**32 - 1)
DUMB_SCRYPT_DIFF = 1
DUST_THRESHOLD = 0.001e8

0 comments on commit 9dd7098

Please sign in to comment.