zacho56 (OP)
Member
Offline
Activity: 84
Merit: 10
|
|
June 06, 2013, 08:14:09 PM |
|
|
"I have a dream" - Martin Luther King JR
|
|
|
zacho56 (OP)
Member
Offline
Activity: 84
Merit: 10
|
|
June 06, 2013, 08:14:53 PM |
|
Hey bud theres a new anti-ddos pool at http://hyc.epools.org/ . Great so far!
|
"I have a dream" - Martin Luther King JR
|
|
|
paladin281978
|
|
June 06, 2013, 08:17:32 PM |
|
no option to register and how to register?
|
|
|
|
Etheric
Newbie
Offline
Activity: 46
Merit: 0
|
|
June 06, 2013, 08:39:34 PM |
|
no option to register
and how to register?
Click Sign In, then Sign Up
|
|
|
|
|
newmars
|
|
June 06, 2013, 08:54:44 PM |
|
It works now
|
|
|
|
nearmiss
|
|
June 06, 2013, 09:40:14 PM |
|
It works now ah thanks, was just about to post that its already been sent There should be no further delays in payments in terms of auto payouts. There were a number of blocks causing a logjam that I will be processing manually later tonight when I get a minute. But anyt new blocks as of 45min or so ago should be paying out perfectly fine, and any old balances can/should be able to auto-payout any time you'd like. To people who have pm'd me and not got a response yet, sorry, I've been busy trying to address the problems. I hope I have resolved your issues in the process. If not, please feel free to re-send. I will eventually get all of you a reply either way. Thanks again for people's patience and mining support @ the pool. Once the manual stuff is cleaned up and things are again confirmed smooth, I'll be doing a bunch of giveaways and other things with the pool to show my appreciation.
|
Profit-Switching Pool w/ Vardiff -> http://hashco.ws Optionally keep the alts we mine or auto-trade for BTC. In addition can be paid out in any of: 365, AC, BC, BTC, C2, CINNI, COMM, FAC, HBN, MINT, PMC, QRK, RDD, WC, XBC
|
|
|
pajak666
|
|
June 06, 2013, 10:14:40 PM |
|
I am trying to solo mine this coin Is there any command for wallet to show hashrate from cgminer. cgminer seem to be connected, but I can not find a block for longer than an hour. what could be the case?
|
|
|
|
baloo_kiev
|
|
June 06, 2013, 11:15:08 PM |
|
Since nobody has posted p2pool code before, I propose my version. Original source: https://github.com/hakabane/p2pool-altcoins, credit to akabane https://bitcointalk.org/index.php?action=profile;u=109664Public node: http://78.27.191.182:8344/ (no fee except default 1% to original p2pool authors) Modifications for HYC: diff --git a/p2pool/bitcoin/helper.py b/p2pool/bitcoin/helper.py index adab25e..aa4899b 100644 --- a/p2pool/bitcoin/helper.py +++ b/p2pool/bitcoin/helper.py @@ -70,7 +70,7 @@ def submit_block_p2p(block, factory, net): @defer.inlineCallbacks def submit_block_rpc(block, ignore_failure, bitcoind, bitcoind_work, net): if bitcoind_work.value['use_getblocktemplate']: - if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME: + if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME or 'hyper' in net.NAME: result = yield bitcoind.rpc_getblocktemplate(dict(mode='submit', data=bitcoin_data.block_type.pack(block).encode('hex'))) success = result is None else: diff --git a/p2pool/bitcoin/networks.py b/p2pool/bitcoin/networks.py index 7dd26f4..682a920 100644 --- a/p2pool/bitcoin/networks.py +++ b/p2pool/bitcoin/networks.py @@ -104,6 +104,28 @@ nets = dict( SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), DUMB_SCRYPT_DIFF=2**16, ), + + hypercoin=math.Object( + P2P_PREFIX='fcd9b7dd'.decode('hex'), + P2P_PORT=17453, + ADDRESS_VERSION=40, + RPC_PORT=7452, + RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue( + 'hypercoin address' in (yield bitcoind.rpc_help()) and + not (yield bitcoind.rpc_getinfo())['testnet'] + )), + SUBSIDY_FUNC=lambda height: 25*100000000, + POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)), + BLOCK_PERIOD=40, + SYMBOL='HYC', + CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Hypercoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Hypercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.hypercoin'), 'hypercoin.conf'), + BLOCK_EXPLORER_URL_PREFIX='http://example.com/', + ADDRESS_EXPLORER_URL_PREFIX='http://example.com/', + SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), + DUMB_SCRYPT_DIFF=2**16, + ), + + litecoin_testnet=math.Object( P2P_PREFIX='fcc1b7dc'.decode('hex'), P2P_PORT=19333, diff --git a/p2pool/networks.py b/p2pool/networks.py index 8f60436..f3f8f3f 100644 --- a/p2pool/networks.py +++ b/p2pool/networks.py @@ -63,6 +63,26 @@ nets = dict( ANNOUNCE_CHANNEL='#p2pool-alt', VERSION_CHECK=lambda v: True, ), + + hypercoin=math.Object( + PARENT=networks.nets['hypercoin'], + SHARE_PERIOD=10, # seconds + CHAIN_LENGTH=24*60*60//10, # shares + REAL_CHAIN_LENGTH=24*60*60//10, # shares + TARGET_LOOKBEHIND=200, # shares + SPREAD=45, # blocks + IDENTIFIER='9147c5bfc6923429'.decode('hex'), + PREFIX='9408c1a03cf629f9'.decode('hex'), + P2P_PORT=41731, + MIN_TARGET=0, + MAX_TARGET=2**256//2**20 - 1, + PERSIST=False, + WORKER_PORT=9327, + BOOTSTRAP_ADDRS='78.27.191.182'.split(' '), + ANNOUNCE_CHANNEL='#p2pool-alt', + VERSION_CHECK=lambda v: True, + ), + litecoin_testnet=math.Object( PARENT=networks.nets['litecoin_testnet'], SHARE_PERIOD=3, # seconds
|
|
|
|
ahmed_bodi
|
|
June 07, 2013, 01:30:39 AM |
|
pools back up zach, had to go get a new hard drive for the new stratum server
|
Bitrated user: ahmedbodi.
|
|
|
zacho56 (OP)
Member
Offline
Activity: 84
Merit: 10
|
|
June 09, 2013, 11:07:55 AM |
|
Since nobody has posted p2pool code before, I propose my version. Original source: https://github.com/hakabane/p2pool-altcoins, credit to akabane https://bitcointalk.org/index.php?action=profile;u=109664Public node: http://78.27.191.182:8344/ (no fee except default 1% to original p2pool authors) Modifications for HYC: diff --git a/p2pool/bitcoin/helper.py b/p2pool/bitcoin/helper.py index adab25e..aa4899b 100644 --- a/p2pool/bitcoin/helper.py +++ b/p2pool/bitcoin/helper.py @@ -70,7 +70,7 @@ def submit_block_p2p(block, factory, net): @defer.inlineCallbacks def submit_block_rpc(block, ignore_failure, bitcoind, bitcoind_work, net): if bitcoind_work.value['use_getblocktemplate']: - if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME: + if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME or 'hyper' in net.NAME: result = yield bitcoind.rpc_getblocktemplate(dict(mode='submit', data=bitcoin_data.block_type.pack(block).encode('hex'))) success = result is None else: diff --git a/p2pool/bitcoin/networks.py b/p2pool/bitcoin/networks.py index 7dd26f4..682a920 100644 --- a/p2pool/bitcoin/networks.py +++ b/p2pool/bitcoin/networks.py @@ -104,6 +104,28 @@ nets = dict( SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), DUMB_SCRYPT_DIFF=2**16, ), + + hypercoin=math.Object( + P2P_PREFIX='fcd9b7dd'.decode('hex'), + P2P_PORT=17453, + ADDRESS_VERSION=40, + RPC_PORT=7452, + RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue( + 'hypercoin address' in (yield bitcoind.rpc_help()) and + not (yield bitcoind.rpc_getinfo())['testnet'] + )), + SUBSIDY_FUNC=lambda height: 25*100000000, + POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)), + BLOCK_PERIOD=40, + SYMBOL='HYC', + CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Hypercoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Hypercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.hypercoin'), 'hypercoin.conf'), + BLOCK_EXPLORER_URL_PREFIX='http://example.com/', + ADDRESS_EXPLORER_URL_PREFIX='http://example.com/', + SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), + DUMB_SCRYPT_DIFF=2**16, + ), + + litecoin_testnet=math.Object( P2P_PREFIX='fcc1b7dc'.decode('hex'), P2P_PORT=19333, diff --git a/p2pool/networks.py b/p2pool/networks.py index 8f60436..f3f8f3f 100644 --- a/p2pool/networks.py +++ b/p2pool/networks.py @@ -63,6 +63,26 @@ nets = dict( ANNOUNCE_CHANNEL='#p2pool-alt', VERSION_CHECK=lambda v: True, ), + + hypercoin=math.Object( + PARENT=networks.nets['hypercoin'], + SHARE_PERIOD=10, # seconds + CHAIN_LENGTH=24*60*60//10, # shares + REAL_CHAIN_LENGTH=24*60*60//10, # shares + TARGET_LOOKBEHIND=200, # shares + SPREAD=45, # blocks + IDENTIFIER='9147c5bfc6923429'.decode('hex'), + PREFIX='9408c1a03cf629f9'.decode('hex'), + P2P_PORT=41731, + MIN_TARGET=0, + MAX_TARGET=2**256//2**20 - 1, + PERSIST=False, + WORKER_PORT=9327, + BOOTSTRAP_ADDRS='78.27.191.182'.split(' '), + ANNOUNCE_CHANNEL='#p2pool-alt', + VERSION_CHECK=lambda v: True, + ), + litecoin_testnet=math.Object( PARENT=networks.nets['litecoin_testnet'], SHARE_PERIOD=3, # seconds
Ive got everything set up besides this part of the code. Im not sure where this code goes as there are +'s on this code. Could you edit the nessessary files for thsi code and send it to me via mega.co.nz or pastebin? I have the main networks.py edited I just need the bitcoin folders networks.py and the helper.py edited. Thanks!
|
"I have a dream" - Martin Luther King JR
|
|
|
baloo_kiev
|
|
June 09, 2013, 12:19:02 PM |
|
Since nobody has posted p2pool code before, I propose my version. Original source: https://github.com/hakabane/p2pool-altcoins, credit to akabane https://bitcointalk.org/index.php?action=profile;u=109664Public node: http://78.27.191.182:8344/ (no fee except default 1% to original p2pool authors) Modifications for HYC: diff --git a/p2pool/bitcoin/helper.py b/p2pool/bitcoin/helper.py index adab25e..aa4899b 100644 --- a/p2pool/bitcoin/helper.py +++ b/p2pool/bitcoin/helper.py @@ -70,7 +70,7 @@ def submit_block_p2p(block, factory, net): @defer.inlineCallbacks def submit_block_rpc(block, ignore_failure, bitcoind, bitcoind_work, net): if bitcoind_work.value['use_getblocktemplate']: - if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME: + if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME or 'hyper' in net.NAME: result = yield bitcoind.rpc_getblocktemplate(dict(mode='submit', data=bitcoin_data.block_type.pack(block).encode('hex'))) success = result is None else: diff --git a/p2pool/bitcoin/networks.py b/p2pool/bitcoin/networks.py index 7dd26f4..682a920 100644 --- a/p2pool/bitcoin/networks.py +++ b/p2pool/bitcoin/networks.py @@ -104,6 +104,28 @@ nets = dict( SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), DUMB_SCRYPT_DIFF=2**16, ), + + hypercoin=math.Object( + P2P_PREFIX='fcd9b7dd'.decode('hex'), + P2P_PORT=17453, + ADDRESS_VERSION=40, + RPC_PORT=7452, + RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue( + 'hypercoin address' in (yield bitcoind.rpc_help()) and + not (yield bitcoind.rpc_getinfo())['testnet'] + )), + SUBSIDY_FUNC=lambda height: 25*100000000, + POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)), + BLOCK_PERIOD=40, + SYMBOL='HYC', + CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Hypercoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Hypercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.hypercoin'), 'hypercoin.conf'), + BLOCK_EXPLORER_URL_PREFIX='http://example.com/', + ADDRESS_EXPLORER_URL_PREFIX='http://example.com/', + SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), + DUMB_SCRYPT_DIFF=2**16, + ), + + litecoin_testnet=math.Object( P2P_PREFIX='fcc1b7dc'.decode('hex'), P2P_PORT=19333, diff --git a/p2pool/networks.py b/p2pool/networks.py index 8f60436..f3f8f3f 100644 --- a/p2pool/networks.py +++ b/p2pool/networks.py @@ -63,6 +63,26 @@ nets = dict( ANNOUNCE_CHANNEL='#p2pool-alt', VERSION_CHECK=lambda v: True, ), + + hypercoin=math.Object( + PARENT=networks.nets['hypercoin'], + SHARE_PERIOD=10, # seconds + CHAIN_LENGTH=24*60*60//10, # shares + REAL_CHAIN_LENGTH=24*60*60//10, # shares + TARGET_LOOKBEHIND=200, # shares + SPREAD=45, # blocks + IDENTIFIER='9147c5bfc6923429'.decode('hex'), + PREFIX='9408c1a03cf629f9'.decode('hex'), + P2P_PORT=41731, + MIN_TARGET=0, + MAX_TARGET=2**256//2**20 - 1, + PERSIST=False, + WORKER_PORT=9327, + BOOTSTRAP_ADDRS='78.27.191.182'.split(' '), + ANNOUNCE_CHANNEL='#p2pool-alt', + VERSION_CHECK=lambda v: True, + ), + litecoin_testnet=math.Object( PARENT=networks.nets['litecoin_testnet'], SHARE_PERIOD=3, # seconds
Ive got everything set up besides this part of the code. Im not sure where this code goes as there are +'s on this code. Could you edit the nessessary files for thsi code and send it to me via mega.co.nz or pastebin? I have the main networks.py edited I just need the bitcoin folders networks.py and the helper.py edited. Thanks! Get it here https://docs.google.com/file/d/0B1HSZgOrasfqczdFLW5zMXlENms/edit?usp=sharingTo have working p2pool network (not just a set of single nodes), everyone must use the same networks.py!
|
|
|
|
baloo_kiev
|
|
June 10, 2013, 11:27:26 PM |
|
My p2pool node is up again. Sorry for the downtime, a lightning killed my router However, there are no connections with other p2pool nodes, seems like nobody is hosting.
|
|
|
|
zacho56 (OP)
Member
Offline
Activity: 84
Merit: 10
|
|
June 11, 2013, 11:49:58 AM |
|
My p2pool node is up again. Sorry for the downtime, a lightning killed my router However, there are no connections with other p2pool nodes, seems like nobody is hosting. Awesome. The diff change is soon and the profitibality will skyrocket, Im sure many will use it.
|
"I have a dream" - Martin Luther King JR
|
|
|
nearmiss
|
|
June 11, 2013, 12:16:20 PM |
|
Hope so. If the demand is there, I will re-enable mining at mine. Website remains up.
|
Profit-Switching Pool w/ Vardiff -> http://hashco.ws Optionally keep the alts we mine or auto-trade for BTC. In addition can be paid out in any of: 365, AC, BC, BTC, C2, CINNI, COMM, FAC, HBN, MINT, PMC, QRK, RDD, WC, XBC
|
|
|
broken_pixel
|
|
June 11, 2013, 05:22:51 PM |
|
My wallet is hosed with 10,990 HYCs stuck inside. I can't send a HYC or receive any HYC. I have a pending confirmation that has been pending since 6/10/2013 13:48 and I have 2 active connections to the HYC network. Wallet out of sync always all the time even after it scans the blocks with connections.
Status: 1/unconfirmed Date: 6/10/2013 13:48 From: unknown To: HSfWMx1Z1maujJYMFEexdd1XhC9tDymuvU (own address, label: hypercoinpool.com) Credit: 65.28277929 HYC Net amount: +65.28277929 HYC Transaction ID: 589cca8f723d15425af61a040f40d50507108fec41718b723d8959f34d599274
I tried sending a payment of 2 HYC to my address I have on Cryptsy, no dice man.
Status: 0/unconfirmed Date: 6/11/2013 12:06 To: cryptsy HCjoWAvs4WgeQr2UVPpZqAzeecrLeFEqqB Debit: -2.00 HYC Net amount: -2.00 HYC Transaction ID: f9d32813c973d9d10932f39a83d2ee5ebd3f7e7215d01843ebdd33c9d37a395b
|
GA-990FXA-UD5, 1x 7970L, 2x S1, AX1200i, RIVBE, 2x R290x, NEX1500, BTC: 1G9cQix8bMgh35MQ9wY3Rb9yNSSCtnoRmK, DGC: DFo9FcKYsutv9Vx5c5xUzkrt7VJdECZWTM, LTC: LaAN33aktPGaimN5ALL9kjHjuJekfmKfTh
|
|
|
zacho56 (OP)
Member
Offline
Activity: 84
Merit: 10
|
|
June 11, 2013, 06:02:28 PM |
|
My wallet is hosed with 10,990 HYCs stuck inside. I can't send a HYC or receive any HYC. I have a pending confirmation that has been pending since 6/10/2013 13:48 and I have 2 active connections to the HYC network. Wallet out of sync always all the time even after it scans the blocks with connections.
Status: 1/unconfirmed Date: 6/10/2013 13:48 From: unknown To: HSfWMx1Z1maujJYMFEexdd1XhC9tDymuvU (own address, label: hypercoinpool.com) Credit: 65.28277929 HYC Net amount: +65.28277929 HYC Transaction ID: 589cca8f723d15425af61a040f40d50507108fec41718b723d8959f34d599274
I tried sending a payment of 2 HYC to my address I have on Cryptsy, no dice man.
Status: 0/unconfirmed Date: 6/11/2013 12:06 To: cryptsy HCjoWAvs4WgeQr2UVPpZqAzeecrLeFEqqB Debit: -2.00 HYC Net amount: -2.00 HYC Transaction ID: f9d32813c973d9d10932f39a83d2ee5ebd3f7e7215d01843ebdd33c9d37a395b
Thats odd I have 54 connections on my wallet? Did you forward the ports? Thats what I had to do with my wallets in order to get all the connections. Try that and reboot your wallet.
|
"I have a dream" - Martin Luther King JR
|
|
|
broken_pixel
|
|
June 11, 2013, 06:10:43 PM |
|
Why would the ports have to be forwarded if it worked without forwarding ports before? No other wallet I use needs to have ports forwarded.
|
GA-990FXA-UD5, 1x 7970L, 2x S1, AX1200i, RIVBE, 2x R290x, NEX1500, BTC: 1G9cQix8bMgh35MQ9wY3Rb9yNSSCtnoRmK, DGC: DFo9FcKYsutv9Vx5c5xUzkrt7VJdECZWTM, LTC: LaAN33aktPGaimN5ALL9kjHjuJekfmKfTh
|
|
|
zacho56 (OP)
Member
Offline
Activity: 84
Merit: 10
|
|
June 11, 2013, 06:17:59 PM |
|
Why would the ports have to be forwarded if it worked without forwarding ports before? No other wallet I use needs to have ports forwarded.
No idea. But i've always had to forward the ports on my wallet in orderr to get max connections. You can also add this node if you would like. -addnode=84.200.17.243
|
"I have a dream" - Martin Luther King JR
|
|
|
broken_pixel
|
|
June 11, 2013, 06:22:04 PM |
|
like this? C:\Users\5110\Documents\Hypercoin\hypercoin-qt.exe -addnode=82.211.31.244 -addnode=84.200.17.243
|
GA-990FXA-UD5, 1x 7970L, 2x S1, AX1200i, RIVBE, 2x R290x, NEX1500, BTC: 1G9cQix8bMgh35MQ9wY3Rb9yNSSCtnoRmK, DGC: DFo9FcKYsutv9Vx5c5xUzkrt7VJdECZWTM, LTC: LaAN33aktPGaimN5ALL9kjHjuJekfmKfTh
|
|
|
|