Bitcoin Forum
May 21, 2024, 09:20:34 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 [5]  All
  Print  
Author Topic: [ANN][CNC][P2pool] - ChinaCoin (CHNCoin) P2Pool - 1% Fee - Stable and Fast!  (Read 8196 times)
erk
Hero Member
*****
Offline Offline

Activity: 826
Merit: 500



View Profile
May 07, 2013, 02:30:49 AM
 #81

I have seen the Pool Rate dropping over the last few hours, is that the same for everyone or am I loosing some BOOTSTRAP_ADDRS?

Pool rate: 142MH/s (29% DOA+orphan) Share difficulty: 0.105

I have not noticed that, e.g. the pool from the github code linked in the previous code is at the following values for me, taken from my node at http://cnc.crabdance.com:8400/static/

Pool Rate 295MH/s (37% DOA+orphan)
Peers 6 out, 5 in

From the "root" node at http://chn.p2pool.skralg.com:8109/static/

Pool rate: 293MH/s (36% DOA+orphan)
Peers: 4 out, 11 in

Hmm only getting half those figures. It was up over 400MH/s Pool rate 6 hours ago.
I am still running Version: 11.3-16-g104a596-dirty could that be a problems?



are you using https://github.com/skralg/p2pool-feathercoin ?

No, I think I am using the version from git clone https://github.com/chrda/p2pool-chncoin.git is that a problem?



gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
May 07, 2013, 02:51:30 AM
 #82

I have seen the Pool Rate dropping over the last few hours, is that the same for everyone or am I loosing some BOOTSTRAP_ADDRS?

Pool rate: 142MH/s (29% DOA+orphan) Share difficulty: 0.105

I have not noticed that, e.g. the pool from the github code linked in the previous code is at the following values for me, taken from my node at http://cnc.crabdance.com:8400/static/

Pool Rate 295MH/s (37% DOA+orphan)
Peers 6 out, 5 in

From the "root" node at http://chn.p2pool.skralg.com:8109/static/

Pool rate: 293MH/s (36% DOA+orphan)
Peers: 4 out, 11 in

Hmm only getting half those figures. It was up over 400MH/s Pool rate 6 hours ago.
I am still running Version: 11.3-16-g104a596-dirty could that be a problems?



are you using https://github.com/skralg/p2pool-feathercoin ?

No, I think I am using the version from git clone https://github.com/chrda/p2pool-chncoin.git is that a problem?





then you are connected to blastbobs p2pool network, that github was also updated a couple hours ago with new network identifiers/ports, so you would have to update, however i was on that network before and sometimes payouts for my nodes miners were missing somehow, i think someone explained a couple posts before in this thread why this might be.

im just setting up another network to test now actually, bit fed up with the stuff out there so far Smiley
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
May 07, 2013, 03:02:32 AM
 #83

I setup a test node with better P2Pool parameters, if anyone wants to point miners at it here it goes (and yes if blocks are found this will pay better than if you join an existing p2pool since you will be first in line and the parameters are more sensible too):

http://paysmorecnc.crabdance.com:8888/

If anyone wants to join their node to the network they can get the original P2Pool code (11.4) from https://github.com/forrestv/p2pool
You would start P2Pool just as if you would want to mine litecoin (after making the below code changes!), so e.g. I use:
Code:
./run_p2pool.py --net litecoin -a yourChnCoinAddress --w 8888 --bitcoind-p2p-port 8106 --bitcoind-rpc-port 8108 yourChncoindUser yourChncoindPass

then exchange the litecoin= definitions in p2pool/networks.py and p2pool/bitcoin/networks.py as follows:

p2pool/networks.py:
Code:
    litecoin=math.Object(
        PARENT=networks.nets['litecoin'],
        SHARE_PERIOD=30, # seconds
        CHAIN_LENGTH=12*60*60//10, # shares
        REAL_CHAIN_LENGTH=12*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=120, # blocks
        IDENTIFIER='43484E636F696D21'.decode('hex'),
        PREFIX='B4C305FD74B0DEBE'.decode('hex'),
        P2P_PORT=12338,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=8888,
        BOOTSTRAP_ADDRS='paysmorecnc.crabdance.com'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py:
Code:
    litecoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=8106,
        ADDRESS_VERSION=28,
        RPC_PORT=8108,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'chncoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 88*100000000 >> (height + 1)//4625280,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60, # s
        SYMBOL='CNC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'chncoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/chncoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.chncoin'), 'chncoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://cnc.cryptocoinexplorer.com/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://cnc.cryptocoinexplorer.com/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
May 07, 2013, 03:58:35 AM
 #84

need some more hashrate at http://paysmorecnc.crabdance.com:8888/
point your miners there, DOA is very low!
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
May 08, 2013, 02:40:09 AM
 #85

removed the test node at paysmorecnc.crabdance.com:8888 from first post, if you want to mine CNC see main server in first post
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
May 08, 2013, 03:56:48 PM
 #86

CNC 2nd most profitable coin again, who would've thought Smiley
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
November 29, 2013, 01:17:40 PM
 #87

reviving this thread as the pool is up and running again, given the high CNC profitability!
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
November 29, 2013, 04:05:03 PM
 #88

come mine here, the other public pool already has around 50% network hashrate, not healthy!
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
November 30, 2013, 12:47:45 AM
 #89

CNC still most profitable, around 3x Litecoin Mining Earnings atm, but difficulty is going up, so mine NOW!
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
December 03, 2013, 04:44:47 AM
 #90

still 1.5x profitable over LTC mining...
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
December 04, 2013, 10:45:34 AM
 #91

Fee lowered to 1%
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
December 06, 2013, 01:23:55 AM
 #92

p2pool pays out transactions fees to miners!
gritter (OP)
Full Member
***
Offline Offline

Activity: 147
Merit: 101

Datum.network - register for Pre-ICO


View Profile WWW
December 08, 2013, 01:57:14 AM
 #93

extra lucky in last few hours, expected blocks=4, actual blocks mined=10
Doxcade
Newbie
*
Offline Offline

Activity: 19
Merit: 0



View Profile
January 08, 2014, 06:43:15 PM
 #94


Hay maybe a bit of help?

Setting up some P2pools, I have cnc working with newest chncoind (had to change the prefix id) but can't seem to connect to any other p2pools.
I know there are not many but if you could post your p2p_port and bootstrap your using. I added you in my bootstrap but wont connect.
Also check the code below and see if the identifier and prefix matches what your using.


Thanks!

Code:
 chncoin=math.Object(
        PARENT=networks.nets['chncoin'],
        SHARE_PERIOD=15, # seconds
        CHAIN_LENGTH=12*60*60//10, # shares
        REAL_CHAIN_LENGTH=12*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=30, # blocks
        IDENTIFIER='e137d5b8c6923410'.decode('hex'),
        PREFIX='7218c1a53ef629b0'.decode('hex'),
        P2P_PORT=12388,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=8800,
        BOOTSTRAP_ADDRS='42.2.216.54 cnc.crabdance.com'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-chn',
        VERSION_CHECK=lambda v: True,
    ),
)

Code:
chncoin=math.Object(
        P2P_PREFIX='fdc2b8dd'.decode('hex'),
        P2P_PORT=8106,
        ADDRESS_VERSION=28,
        RPC_PORT=8108,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'chncoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 88*100000000 >> (height + 1)//462528000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60, # s
        SYMBOL='CHN',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'chncoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/chncoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.chncoin'), 'chncoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://cnc.cryptocoinexplorer.com/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://cnc.cryptocoinexplorer.com/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),
Pages: « 1 2 3 4 [5]  All
  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!