Bitcoin Forum
June 15, 2024, 07:26:49 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN] [PXC] Phenixcoin P2Pool located in Germany  (Read 1014 times)
spoid (OP)
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


bearded, drunk, fat, naked


View Profile
May 27, 2013, 01:02:37 PM
Last edit: May 27, 2013, 01:19:10 PM by spoid
 #1

I set up a p2pool for Phenixcoin and tested it over night, found 2 blocks and appeared to be working correctly - my miners received payout.

This is my first p2pool so I set the fee to 1% so I can check whether the fee actually works.

I could not find any other p2pools for Phenixcoin (i.e. I am apparently mining alone right now) so I'd appreciate any hashrate sent my way so we can actually find some blocks.

http://84.200.206.231:19324/static/

with great beard comes great liver. Reputation Thread: https://bitcointalk.org/index.php?topic=195803.0
Wilderness
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
May 27, 2013, 01:07:53 PM
 #2

I'm connected and mining fine with 2 rigs @ 4 M/Hash
Lebrick
Member
**
Offline Offline

Activity: 90
Merit: 10



View Profile
May 28, 2013, 03:15:53 AM
 #3

Hey Spoid,
 was wondering what settings you used in your p2pool network.py and in bitcoin/network.py,
to connect my connects but errors saying overflow use port between these values blah blah.

Any help would be nice.

Trade Rep: https://bitcointalk.org/index.php?topic=210453.0 | Cryptsy Ref link: https://www.cryptsy.com/users/register?refid=541

BTC: 1NK92Y1gr3bJ4pxPARKrHmpi5qaSoFjBBE
spoid (OP)
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


bearded, drunk, fat, naked


View Profile
May 28, 2013, 03:19:52 AM
 #4

you can find all the information here:
https://bitcointalk.org/index.php?topic=214512.0;all

it's probably not ideal, but the pool was running fine during the night, I assume my shitty VPS just can't handle it during the day as other users use up all the CPU/RAM/Bandwith. Might have been something wrong with the settings though.

with great beard comes great liver. Reputation Thread: https://bitcointalk.org/index.php?topic=195803.0
Lebrick
Member
**
Offline Offline

Activity: 90
Merit: 10



View Profile
May 28, 2013, 03:31:40 AM
 #5

Ah yes i have read that thread, was full of some good info. Doesn't quite answer this one ^.^

My current p2pool connects to the wallet and to the p2p network however it gets no shares and after it displays connect to 127.0.0.1:12556/static for graphs it displays an error:

exceptions.OverflowError: getsockaddrarg: port must be 0-65535

as you can see its well between the value? Have you encounted this before?

Trade Rep: https://bitcointalk.org/index.php?topic=210453.0 | Cryptsy Ref link: https://www.cryptsy.com/users/register?refid=541

BTC: 1NK92Y1gr3bJ4pxPARKrHmpi5qaSoFjBBE
schnebi
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
May 28, 2013, 03:34:21 AM
 #6

Ah yes i have read that thread, was full of some good info. Doesn't quite answer this one ^.^

My current p2pool connects to the wallet and to the p2p network however it gets no shares and after it displays connect to 127.0.0.1:12556/static for graphs it displays an error:

exceptions.OverflowError: getsockaddrarg: port must be 0-65535

as you can see its well between the value? Have you encounted this before?

I have seen mamy errors while experimenting with P2Pool, but I have never come to this error  Grin
Lebrick
Member
**
Offline Offline

Activity: 90
Merit: 10



View Profile
May 28, 2013, 03:35:37 AM
Last edit: May 28, 2013, 03:52:45 AM by Lebrick
 #7

p2pool/networks.py
Quote
phenix=math.Object(
        PARENT=networks.nets['phenix'],
        SHARE_PERIOD=30, # seconds target spacing
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares coinbase maturity
        SPREAD=120, # blocks
        IDENTIFIER='a5aed03050126d6c'.decode('hex'),
        PREFIX='b6c0601991aa19a2'.decode('hex'),
        P2P_PORT=24396,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=True,
        WORKER_PORT=24397,
        BOOTSTRAP_ADDRS=''.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py
Quote
phenix=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=9555,
        ADDRESS_VERSION=56,
        RPC_PORT=9554,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'phenixcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 1*10000000 >> (height + 1)//1080000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30, # s targetspacing
        SYMBOL='PXC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'phenixcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/phenixcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.phenixcoin'), 'phenixcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://pxc/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://pxc/address/',
        SANE_TARGET_RANGE=(2**256//100000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),

Error when running


Any thoughts?

Trade Rep: https://bitcointalk.org/index.php?topic=210453.0 | Cryptsy Ref link: https://www.cryptsy.com/users/register?refid=541

BTC: 1NK92Y1gr3bJ4pxPARKrHmpi5qaSoFjBBE
Lebrick
Member
**
Offline Offline

Activity: 90
Merit: 10



View Profile
May 28, 2013, 03:54:16 AM
 #8

Edited above

Trade Rep: https://bitcointalk.org/index.php?topic=210453.0 | Cryptsy Ref link: https://www.cryptsy.com/users/register?refid=541

BTC: 1NK92Y1gr3bJ4pxPARKrHmpi5qaSoFjBBE
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!