forked from ahmedbodi/p2pool-vert-dev
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add second p2pool network for small miners on VTC
- Loading branch information
1 parent
952287c
commit b092f6b
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from p2pool.bitcoin import networks | ||
|
||
PARENT=networks.nets['vertcoin'] | ||
SHARE_PERIOD=15 # seconds | ||
CHAIN_LENGTH=24*60*60//10 # shares | ||
REAL_CHAIN_LENGTH=24*60*60//10 # shares | ||
TARGET_LOOKBEHIND=200 # shares | ||
SPREAD=12 # blocks | ||
IDENTIFIER='a06e81c82fcaff83'.decode('hex') | ||
PREFIX='7c3814b6ccdcf984'.decode('hex') | ||
P2P_PORT=9347 | ||
MIN_TARGET=4 | ||
MAX_TARGET=2**256//2**20 - 1 | ||
PERSIST=False | ||
WORKER_PORT=9181 | ||
BOOTSTRAP_ADDRS='vtc.alwayshashing.com pool.vtconline.org uk1.vtconline.org'.split(' ') | ||
ANNOUNCE_CHANNEL='#p2pool-vtc' | ||
VERSION_CHECK=lambda v: True | ||
SOFTFORKS_REQUIRED = set(['nversionbips', 'csv', 'segwit']) | ||
SEGWIT_ACTIVATION_VERSION = 16 |
b092f6b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Handshake timed out, disconnecting from x.x.x.x:9346
and not payout to address
how to fix it
thank