Skip to content

Commit

Permalink
Merge pull request p2pool#143 from terracoin/blockexplorer_url_update
Browse files Browse the repository at this point in the history
terracoin blockexplorer url update.
  • Loading branch information
forrestv committed Dec 5, 2013
2 parents 8e7cb82 + 9ece94a commit e22c8a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions p2pool/bitcoin/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@
BLOCK_PERIOD=120, # s
SYMBOL='TRC',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Terracoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Terracoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.terracoin'), 'terracoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/address/',
TX_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/tx/',
BLOCK_EXPLORER_URL_PREFIX='http://trc.cryptocoinexplorer.com/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://trc.cryptocoinexplorer.com/address/',
TX_EXPLORER_URL_PREFIX='http://trc.cryptocoinexplorer.com/tx/',
SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
DUMB_SCRYPT_DIFF=1,
DUST_THRESHOLD=1e8,
Expand All @@ -171,9 +171,9 @@
BLOCK_PERIOD=120, # s
SYMBOL='tTRC',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Terracoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Terracoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.terracoin'), 'terracoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/testnet/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/testnet/address/',
TX_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/testnet/tx/',
BLOCK_EXPLORER_URL_PREFIX='http://trc.cryptocoinexplorer.com/testnet/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://trc.cryptocoinexplorer.com/testnet/address/',
TX_EXPLORER_URL_PREFIX='http://trc.cryptocoinexplorer.com/testnet/tx/',
SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
DUMB_SCRYPT_DIFF=1,
DUST_THRESHOLD=1e8,
Expand Down

0 comments on commit e22c8a5

Please sign in to comment.