Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion p2pool/networks/freicoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
MAX_TARGET = 2**256//2**32 - 1
PERSIST = True
WORKER_PORT = 9638
BOOTSTRAP_ADDRS = 'pool.freico.in abacus.freico.in pool.sicanet.net'.split(' ')
BOOTSTRAP_ADDRS = 'delta.sicanet.net'.split(' ')
ANNOUNCE_CHANNEL = '#p2pool-frc'
VERSION_CHECK = lambda v: 50700 <= v < 60000 or 60010 <= v < 60100 or 60400 <= v
VERSION_WARNING = lambda v: 'Upgrade Freicoin to >=0.8.5!' if v < 80500 else None