Pages:
Author

Topic: [ANN] RealCoin REC – Coin closest to real money |Coin of the real life| Launched - page 41. (Read 58140 times)

sr. member
Activity: 476
Merit: 252
Looks promising. I'm switching to REC now.
full member
Activity: 217
Merit: 100
Quote
0 addresses found from DNS seeds

Any suggestions?

It doesn't matter, you can connect and sync with the network.

Well no, I can't, that's why I was looking at debug.log.
hero member
Activity: 532
Merit: 500
Hello everyone,
we setup a block explorer for RealCoin(REC) at :
http://coinminer.net:2750/chain/RealCoin
Thanks to RobRoy (https://bitcointalksearch.org/user/robroy-110964)
Nice but my question for you is anything out there to figure out the next difficult and time until it changes?
hero member
Activity: 532
Merit: 500
Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.
Want to share the code with me and I'll get another p2pool up asap? Robroy calling you out  Grin

p2pool/networks.py

realcoin=math.Object(
        PARENT=networks.nets['realcoin'],
        SHARE_PERIOD=30,
        CHAIN_LENGTH=24*60*60//10,
        REAL_CHAIN_LENGTH=24*60*60//10,
        TARGET_LOOKBEHIND=200,
        SPREAD=60,
        IDENTIFIER='e021a7b8c60244af'.decode('hex'),
        PREFIX='b6c0601991aa12a2'.decode('hex'),
        P2P_PORT=18889,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=18888,
        BOOTSTRAP_ADDRS='',
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py

realcoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=20002,
        ADDRESS_VERSION=60,
        RPC_PORT=20001,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'realcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 200*100000000 >> (height + 1)//4730400,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30,
        SYMBOL='REC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'realcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/realcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.realcoin'), 'realcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),

What fork are you using I'm having problems
hero member
Activity: 518
Merit: 500
Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.
Want to share the code with me and I'll get another p2pool up asap? Robroy calling you out  Grin

p2pool/networks.py

realcoin=math.Object(
        PARENT=networks.nets['realcoin'],
        SHARE_PERIOD=30,
        CHAIN_LENGTH=24*60*60//10,
        REAL_CHAIN_LENGTH=24*60*60//10,
        TARGET_LOOKBEHIND=200,
        SPREAD=60,
        IDENTIFIER='e021a7b8c60244af'.decode('hex'),
        PREFIX='b6c0601991aa12a2'.decode('hex'),
        P2P_PORT=18889,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=18888,
        BOOTSTRAP_ADDRS='',
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py

realcoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=20002,
        ADDRESS_VERSION=60,
        RPC_PORT=20001,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'realcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 200*100000000 >> (height + 1)//4730400,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30,
        SYMBOL='REC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'realcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/realcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.realcoin'), 'realcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),
hero member
Activity: 532
Merit: 500
Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.
Want to share the code with me and I'll get another p2pool up asap? Robroy calling you out  Grin
member
Activity: 98
Merit: 10
Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.
member
Activity: 98
Merit: 10
member
Activity: 98
Merit: 10
Quote
0 addresses found from DNS seeds

Any suggestions?

It doesn't matter, you can connect and sync with the network.
full member
Activity: 217
Merit: 100
Quote
0 addresses found from DNS seeds

Any suggestions?
full member
Activity: 168
Merit: 100
RHZwh21AhmsoSE7sW2dGWMHDBqRV1Bqx2Z
thanks
sr. member
Activity: 252
Merit: 250
How many of these copycoins exist now? There's bound to be thousands a year no doubt.

RealCoin is not a copycoin.
You yourself admitted it's a GIT clone with a few changes.

Ie: copycoin.
hero member
Activity: 532
Merit: 500
How many of these copycoins exist now? There's bound to be thousands a year no doubt.

RealCoin is not a copycoin.
Trying to solo mine I keep getting invalid url no clue why any thoughts?
member
Activity: 98
Merit: 10
How many of these copycoins exist now? There's bound to be thousands a year no doubt.

RealCoin is not a copycoin.
sr. member
Activity: 252
Merit: 250
How many of these copycoins exist now? There's bound to be thousands a year no doubt.
member
Activity: 81
Merit: 10
so until we will have one pool it not worth to me to mine this coins... Huh
any donation is welcome guyz..... Wink Wink Wink
RYQSsG7sJNBDB5pseRnPiYfBv72NAoyx72
member
Activity: 98
Merit: 10
i change to realcoin only my pc.. with almost 120khash on 24 hours mining now i get only one block

I think it's reasonable, for 24 hours it will generate 2880 blocks, your hash speed is 120 kh/s, network hash power is 400M, you can get one block.
sr. member
Activity: 302
Merit: 250
i change to realcoin only my pc.. with almost 120khash on 24 hours mining now i get only one block

Since you found a block, everything is probably running fine so maybe you just got really unlucky.  You should be finding a block every 2 hours at that hash rate though. 
member
Activity: 81
Merit: 10
i change to realcoin only my pc.. with almost 120khash on 24 hours mining now i get only one block
sr. member
Activity: 302
Merit: 250
any other pool? i can not connect to ahmedbodiwala.tk

Solo mining is your best option right now.  Difficulty is only at 0.211 so you'll get blocks.  Will need a stable pool though as difficulty is going up.
Pages:
Jump to: