From: ncstdc Date: Fri, 26 Jul 2013 06:13:59 +0000 (-0500) Subject: Update networks.py X-Git-Tag: 13.3~10^2 X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=91266cb39f533cc9e2a1df1b3d87c567bbb128b9 Update networks.py change links to blockchain.info --- diff --git a/p2pool/bitcoin/networks.py b/p2pool/bitcoin/networks.py index 15b7841..b3e7ace 100644 --- a/p2pool/bitcoin/networks.py +++ b/p2pool/bitcoin/networks.py @@ -21,8 +21,8 @@ nets = dict( BLOCK_PERIOD=600, # s SYMBOL='BTC', CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Bitcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Bitcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.bitcoin'), 'bitcoin.conf'), - BLOCK_EXPLORER_URL_PREFIX='http://blockexplorer.com/block/', - ADDRESS_EXPLORER_URL_PREFIX='http://blockexplorer.com/address/', + BLOCK_EXPLORER_URL_PREFIX='https://blockchain.info/block/', + ADDRESS_EXPLORER_URL_PREFIX='https://blockchain.info/address/', SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1), DUMB_SCRYPT_DIFF=1, DUST_THRESHOLD=0.001e8,