Bitcoin Forum
May 08, 2024, 04:50:23 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: [1]
  Print  
Author Topic: http://next.afraid.org:8117 - gldcoin p2pool  (Read 1898 times)
kr4x (OP)
Member
**
Offline Offline

Activity: 112
Merit: 10



View Profile
May 24, 2013, 10:57:28 PM
 #1

Come mine some gldcoin, best p2pool for gldcoin out at the moment

http://next.afraid.org:8117/static/
1715187023
Hero Member
*
Offline Offline

Posts: 1715187023

View Profile Personal Message (Offline)

Ignore
1715187023
Reply with quote  #2

1715187023
Report to moderator
1715187023
Hero Member
*
Offline Offline

Posts: 1715187023

View Profile Personal Message (Offline)

Ignore
1715187023
Reply with quote  #2

1715187023
Report to moderator
1715187023
Hero Member
*
Offline Offline

Posts: 1715187023

View Profile Personal Message (Offline)

Ignore
1715187023
Reply with quote  #2

1715187023
Report to moderator
Remember that Bitcoin is still beta software. Don't put all of your money into BTC!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715187023
Hero Member
*
Offline Offline

Posts: 1715187023

View Profile Personal Message (Offline)

Ignore
1715187023
Reply with quote  #2

1715187023
Report to moderator
schnebi
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
May 25, 2013, 01:07:24 PM
 #2

Hey man,

I tried to set up a P2Pool for goldcoin as well... but I can't get it working. Here are my networks.py:

Could you please give me a hint what i am doing wrong

Code:
 goldcoin=math.Object(
        PARENT=networks.nets['goldcoin'],
        SHARE_PERIOD=90, # 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=20, # blocks
        IDENTIFIER='be43F5b8c6924210'.decode('hex'),
        PREFIX='b587192ba6d4729a'.decode('hex'),
        P2P_PORT=9777,
        MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=9777,
        BOOTSTRAP_ADDRS='chncoin.no-ip.biz'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),
  

Code:
goldcoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=9556,
        ADDRESS_VERSION=32,
        RPC_PORT=9556,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'gldcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 100*10000000 >> (height + 1)//673700,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=90, # s targetspacing
        SYMBOL='GLD',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'gldcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/gldcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.gldcoin'), 'gldcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://d.evco.in/abe/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://d.evco.in/abe/address/',
        SANE_TARGET_RANGE=(2**256//100000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),
    

The Server is starting and everything seems fine. The Worker is even connecting... But there are no results....
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!