Pages:
Author

Topic: P2Pool Detailed Settings for Altcoins (Read 12917 times)

full member
Activity: 1264
Merit: 138
September 22, 2021, 04:34:51 PM
#50
can anyone help me to create p2pool for Ravencoin?

Did you bother to look at the last year this thread was posted too.... February 2015.

It is dead. 

newbie
Activity: 56
Merit: 0
September 22, 2021, 03:58:02 PM
#49
can anyone help me to create p2pool for Ravencoin?
full member
Activity: 196
Merit: 100
February 02, 2015, 04:10:12 PM
#48
Little question: I'd like to host a p2pool node for XMG. XMG uses the M7M algo, so I guess there are some other modifications necessary, not just the values in the networks.py?

You are correct. You would have to compile in support for that algo. Can't help much more as I have personally not tried compiling in anything other than SHA and Scrypt. I know there is support for x11 and possibly others but have never looked into any of them.

Would you be interested in checking it out? The Magi (XMG) developer is interested in P2Pool but we need someone who has experience with. If you are interested (I guess bounty would be available), please contact Joe Lao https://bitcointalksearch.org/user/joelao95-182342
legendary
Activity: 1270
Merit: 1000
February 02, 2015, 03:52:05 PM
#47
Little question: I'd like to host a p2pool node for XMG. XMG uses the M7M algo, so I guess there are some other modifications necessary, not just the values in the networks.py?

You are correct. You would have to compile in support for that algo. Can't help much more as I have personally not tried compiling in anything other than SHA and Scrypt. I know there is support for x11 and possibly others but have never looked into any of them.
hero member
Activity: 756
Merit: 501
February 02, 2015, 06:30:04 AM
#46
Little question: I'd like to host a p2pool node for XMG. XMG uses the M7M algo, so I guess there are some other modifications necessary, not just the values in the networks.py?
full member
Activity: 142
Merit: 101
October 25, 2014, 11:02:52 AM
#45
Great info found here, it has helped me get rolling on creating the new files for OSC - OpenSourceCoin. (ocoin) https://github.com/bryceweiner/OSC/tree/master/src

I'd like to run a "solo" P2Pool with my AntMiner S1's mining OSC, but I have not been able to find a fork that had anything for ocoin.

Here is what I have so far:
p2pool\networks\ocoin.py :
Code:
from p2pool.bitcoin import networks

PARENT = networks.nets['ocoin']
SHARE_PERIOD = 20 # seconds
CHAIN_LENGTH = 24*60*60//10 # shares
REAL_CHAIN_LENGTH = 24*60*60//10 # shares
TARGET_LOOKBEHIND = 60 # shares
SPREAD = 30 # blocks
IDENTIFIER = ''.decode('hex')
PREFIX = ''.decode('hex')
P2P_PORT = 9512
MIN_TARGET = 0
MAX_TARGET = 2**256//2**32 - 1
PERSIST = False
WORKER_PORT = 19512
BOOTSTRAP_ADDRS = ''.split(' ')
ANNOUNCE_CHANNEL = '#p2pool-alt'
VERSION_CHECK = lambda v: True

p2pool\bitcoin\networks\ocoin.py :
Code:
import os
import platform

from twisted.internet import defer

from .. import data, helper
from p2pool.util import pack


P2P_PREFIX = 'e4e8e9e5'.decode('hex')
P2P_PORT = 28532
ADDRESS_VERSION = 2
RPC_PORT = 38532
RPC_CHECK = defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'Ocoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        ))
SUBSIDY_FUNC = lambda height: 25*100000000 >> (height * 1)//400000
POW_FUNC = data.hash256
BLOCK_PERIOD = 12 # s
SYMBOL = 'OSC'
CONF_FILE_FUNC = lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Ocoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/ocoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.ocoin'), 'ocoin.conf')
BLOCK_EXPLORER_URL_PREFIX = ''
ADDRESS_EXPLORER_URL_PREFIX = ''
TX_EXPLORER_URL_PREFIX = ''
SANE_TARGET_RANGE = (2**256//2**32//1000 - 1, 2**256//2**32 - 1)
DUMB_SCRYPT_DIFF = 1
DUST_THRESHOLD = 0.001e8

\AppData\Roaming\Ocoin\ocoin.conf :
Code:
server=1
listen=1
daemon=1
rpcuser=user
rpcpassword=x
rpcallowip=*
rpcport=38532
port=28532
gen=0

The P2Pool starts and connects, but scrolls a few error messages highlighted in bold below:  (I've gone ahead and removed a lot of the repetitive errors)
Code:
C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master>run_p2pool.py --net ocoin --give-author 0.0 --no-bugreport --disable-upnp --address thWXobKDyMGVmK4UHwDdhgJSo1qX93ZTT
2014-10-25 10:51:28.412000 p2pool (version unknown 7032706f6f6c2d7261762d6d6173746572)
2014-10-25 10:51:28.415000
2014-10-25 10:51:28.416000 Testing bitcoind RPC connection to 'http://127.0.0.1:38532/' with username 'user'...
2014-10-25 10:51:28.550000     ...success!
2014-10-25 10:51:28.551000     Current block hash: 8db7f2d43d630b2e3fd334ce306457ca45329a5aec1066e3e490
2014-10-25 10:51:28.551000     Current block height: 578450
2014-10-25 10:51:28.552000
2014-10-25 10:51:28.553000 Testing bitcoind P2P connection to '127.0.0.1:28532'...
2014-10-25 10:51:28.659000     ...success!
2014-10-25 10:51:28.660000
2014-10-25 10:51:28.661000 Determining payout address...
2014-10-25 10:51:28.662000     ...success! Payout address: thWXobKDyMGVmK4UHwDdhgJSo1qX93ZTT
2014-10-25 10:51:28.663000
2014-10-25 10:51:28.663000 Loading shares...
2014-10-25 10:51:28.664000     ...done loading 0 shares (0 verified)!
2014-10-25 10:51:28.665000
2014-10-25 10:51:28.666000 Initializing work...
2014-10-25 10:51:28.803000     ...success!
2014-10-25 10:51:28.805000
2014-10-25 10:51:28.806000 Joining p2pool network using port 9512...
2014-10-25 10:51:28.813000     ...success!
2014-10-25 10:51:28.814000
2014-10-25 10:51:28.815000 Listening for workers on '' port 19512...
2014-10-25 10:51:29     ...success!
2014-10-25 10:51:29.001000
2014-10-25 10:51:29.002000 Started successfully!
2014-10-25 10:51:29.002000 Go to http://127.0.0.1:19512/ to view graphs and statistics!
2014-10-25 10:51:29.004000 Donating 0.0% of work towards P2Pool's development. Please donate to encourage further development of P2Pool!
2014-10-25 10:51:29.004000
2014-10-25 10:51:29.050000 > Unhandled Error
2014-10-25 10:51:29.051000 > Traceback (most recent call last):
2014-10-25 10:51:29.052000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\run_p2pool.py", line 5, in
2014-10-25 10:51:29.052000 >     main.run()
2014-10-25 10:51:29.053000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\main.py", line 595, in run
2014-10-25 10:51:29.053000 >     reactor.run()
2014-10-25 10:51:29.056000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 1192, in run
2014-10-25 10:51:29.056000 >     self.mainLoop()
2014-10-25 10:51:29.057000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 1201, in mainLoop
2014-10-25 10:51:29.059000 >     self.runUntilCurrent()
2014-10-25 10:51:29.061000 > --- ---
2014-10-25 10:51:29.065000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 824, in runUntilCurrent
2014-10-25 10:51:29.070000 >     call.func(*call.args, **call.kw)
2014-10-25 10:51:29.078000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 425, in resolveAddress
2014-10-25 10:51:29.081000 >     self._setRealAddress(self.addr)
2014-10-25 10:51:29.083000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 440, in _setRealAddress
2014-10-25 10:51:29.086000 >     self.doConnect()
2014-10-25 10:51:29.094000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 569, in doConnect
2014-10-25 10:51:29.255000 >     connectResult = self.socket.connect_ex(self.realAddress)
2014-10-25 10:51:29.258000 >   File "C:\Python27\lib\socket.py", line 224, in meth
2014-10-25 10:51:29.260000 >     return getattr(self._sock,name)(*args)
2014-10-25 10:51:29.262000 > [b]exceptions.OverflowError: getsockaddrarg: port must be 0-65535.[/b]
2014-10-25 10:51:32.005000 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)
2014-10-25 10:51:40.144000 > Unhandled Error
2014-10-25 10:51:40.147000 > Traceback (most recent call last):
2014-10-25 10:51:40.149000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\run_p2pool.py", line 5, in
2014-10-25 10:51:40.152000 >     main.run()
2014-10-25 10:51:40.156000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\main.py", line 595, in run
2014-10-25 10:51:40.162000 >     reactor.run()
2014-10-25 10:51:40.168000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 1192, in run
2014-10-25 10:51:40.170000 >     self.mainLoop()
2014-10-25 10:51:40.173000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 1201, in mainLoop
2014-10-25 10:51:40.177000 >     self.runUntilCurrent()
2014-10-25 10:51:40.184000 > --- ---
2014-10-25 10:51:40.189000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 824, in runUntilCurrent
2014-10-25 10:51:40.194000 >     call.func(*call.args, **call.kw)
2014-10-25 10:51:40.196000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 425, in resolveAddress
2014-10-25 10:51:40.199000 >     self._setRealAddress(self.addr)
2014-10-25 10:51:40.205000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 440, in _setRealAddress
2014-10-25 10:51:40.207000 >     self.doConnect()
2014-10-25 10:51:40.209000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 569, in doConnect
2014-10-25 10:51:40.213000 >     connectResult = self.socket.connect_ex(self.realAddress)
2014-10-25 10:51:40.217000 >   File "C:\Python27\lib\socket.py", line 224, in meth
2014-10-25 10:51:40.222000 >     return getattr(self._sock,name)(*args)
2014-10-25 10:51:40.239000 > [b]exceptions.OverflowError: getsockaddrarg: port must be 0-65535.[/b]
2014-10-25 10:51:46.750000 > Unhandled Error
2014-10-25 10:52:20.558000 > Traceback (most recent call last):
2014-10-25 10:52:20.561000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\main.py", line 595, in run
2014-10-25 10:52:20.571000 >     reactor.run()
2014-10-25 10:52:20.575000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 1192, in run
2014-10-25 10:52:20.578000 >     self.mainLoop()
2014-10-25 10:52:20.580000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 1201, in mainLoop
2014-10-25 10:52:20.583000 >     self.runUntilCurrent()
2014-10-25 10:52:20.587000 >   File "C:\Python27\lib\site-packages\twisted\internet\base.py", line 824, in runUntilCurrent
2014-10-25 10:52:20.592000 >     call.func(*call.args, **call.kw)
2014-10-25 10:52:20.596000 > --- ---
2014-10-25 10:52:20.600000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\bitcoin\stratum.py", line 38, in _send_work
2014-10-25 10:52:20.604000 >     x, got_response = self.wb.get_work(*self.wb.preprocess_request('' if self.username is None else self.username))
2014-10-25 10:52:20.609000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\bitcoin\worker_interface.py", line 129, in get_work
2014-10-25 10:52:20.612000 >     x, handler = self._inner.get_work(*args)
2014-10-25 10:52:20.616000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\work.py", line 310, in get_work
2014-10-25 10:52:20.620000 >     base_subsidy=self.node.net.PARENT.SUBSIDY_FUNC(self.current_work.value['height']),
2014-10-25 10:52:20.655000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\data.py", line 222, in generate_transaction
2014-10-25 10:52:20.656000 >     script='\x6a\x28' + cls.get_ref_hash(net, share_info, ref_merkle_link) + pack.IntType(64).pack(last_txout_nonce),
2014-10-25 10:52:20.659000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\data.py", line 246, in get_ref_hash
2014-10-25 10:52:20.664000 >     share_info=share_info,
2014-10-25 10:52:20.667000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\util\pack.py", line 74, in pack
2014-10-25 10:52:20.676000 >     data = self._pack(obj)
2014-10-25 10:52:20.678000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\util\pack.py", line 52, in _pack
2014-10-25 10:52:20.680000 >     f = self.write(None, obj)
2014-10-25 10:52:20.683000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\util\pack.py", line 301, in write
2014-10-25 10:52:20.688000 >     file = type_.write(file, item[key])
2014-10-25 10:52:20.692000 >   File "C:\Users\Manny\Downloads\p2pool-rav-master\p2pool-rav-master\p2pool\util\pack.py", line 327, in write
2014-10-25 10:52:20.697000 >     raise ValueError('incorrect length item!')
2014-10-25 10:52:20.700000 > [b]exceptions.ValueError: incorrect length item![/b]
2014-10-25 10:52:24.033000 > Unhandled Error
2014-10-25 10:52:38.053000 P2Pool: 0 shares in chain (0 verified/0 total) Peers: 0 (0 incoming)
2014-10-25 10:52:38.054000  Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ???

The block reward structure is as follows (It is now currently paying 12.50 OSC per block):
Code:
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
static const int64 nMinimumCoin = 0.0777 * COIN;
int64 nSubsidy = 0.0777 * COIN; //genesis
if (nHeight > 0 && nHeight < 7) {nSubsidy = 0 * COIN;} // zero
else if (nHeight == 7) {nSubsidy = 177777 * COIN;} // Premine
else if (nHeight > 7 && nHeight < 1000) {nSubsidy = 2.5 * COIN;} // IRC Launch
else if (nHeight > 1000 && nHeight < 1337) {nSubsidy = 0.0777 * COIN;} // low instamine official launch
else if (nHeight == 1337) {nSubsidy = 1337 * COIN;} //L33T
else if (nHeight > 1337 && nHeight < 4000) {nSubsidy = 1 * COIN;} //final launch period
else if (nHeight > 4000 && nHeight < 8000) {nSubsidy = 22.5 * COIN;} // 22.5 coin
else if (nHeight > 8000 && nHeight < 16000) {nSubsidy = 15 * COIN;} // 15 coins per block
else if (nHeight > 16000 && nHeight < 32000) {nSubsidy = 7.5 * COIN;} // 7.5 coins per block
else if (nHeight > 32000 && nHeight < 64000) {nSubsidy = 6 * COIN;} // 6 coins per block
else if (nHeight > 64000 && nHeight < 77777) {nSubsidy = 4 * COIN;} // 4 coins
else if (nHeight == 77777) {nSubsidy = 10000 * COIN;} // bonus reward
else if (nHeight > 77777 && nHeight < 128000) {nSubsidy = 4 * COIN;} // 4 coins
else if (nHeight > 128000 && nHeight < 256000) {nSubsidy = 20 * COIN;} // 20 coins
else if (nHeight > 256000) {nSubsidy = 25 * COIN;} // 25 coins
else if (nHeight > 2400000) {nSubsidy = 5 * COIN;}
else {nSubsidy = 1 * COIN;}
// Subsidy is cut in half every 400 thousand blocks
nSubsidy >>= (nHeight / 400000);

Any help would be greatly appreciated.  FYI, I used the files from another coin which works fine (XJO - Joulecoin) as a template to make the files for OSC.

Thanks!
member
Activity: 84
Merit: 10
October 21, 2014, 04:46:12 AM
#44
Tried also your fork:

https://github.com/CartmanSPC/p2pool

its not possible to deploy it on Bitcoin Testnet network =(.
Share chain stays empty ..
member
Activity: 84
Merit: 10
October 20, 2014, 05:22:11 PM
#43
i tried different ones.
for example this one:
https://github.com/forrestv/p2pool

I also tried to "bootstrap" on bitcoin testnetwork. (deleted all bootstrap addresses), launched with persist=false and changed identifiers but the sharechain just stays empty.

i used p2pool_run.py --testnet

Everything went fine, even with connected nodes, but i the share chain is still empty ..

So overall: im unable to start the initial chain
legendary
Activity: 1270
Merit: 1000
October 20, 2014, 02:02:50 PM
#42
A block should not need to be found. Which p2pool is this for? Link?
member
Activity: 84
Merit: 10
October 18, 2014, 02:42:49 PM
#41
Hey,

i got trouble running a new fresh p2pool node.

Got everything up and running and it seems its working...

P2Pool nodes connect to each other.. stratum works everything seems fine..

Exept there p2pool nodes doesnt generate any shares..

I tried to bootstrap the shares with persist = False but it doesnt work.


Also i got a lot of spam of:

Code:
Worker asdgasd submitted share with hash > target:
Hash:   ba14c750915d8d67b76e6dce4874360d7fbf7d2a7feeb925743cb47b03597d1f
Target: ffffffffffffffffffffffffffffffffffffffffffffffffffffffff

Any idears how to properly bootstrap? Does the bootstrapping node may have to find a Block first?

Any suggestions would be nice Smiley
legendary
Activity: 1270
Merit: 1000
September 19, 2014, 02:46:59 PM
#40
Great explanation on P2Pools Pay Per Last N Shares (PPLNS) payout system from windpath:

https://bitcointalksearch.org/topic/1500-th-p2pool-decentralized-dos-resistant-hop-proof-pool-18313

sr. member
Activity: 280
Merit: 250
August 18, 2014, 06:35:47 PM
#39
Thanks Lucky Cris. Would you or anyone else happen to know what the other file is?

A couple of coins had it listed in the protocol.cpp file. But I was told they can technically be in any... I guess it depends on which coin is cloned? But it seems the Darkcoin clones uses prototocol.cpp.
newbie
Activity: 5
Merit: 0
August 18, 2014, 06:12:44 PM
#38
It shure would be nice to know where to look for them , i cant find them
legendary
Activity: 1270
Merit: 1000
August 18, 2014, 05:14:05 PM
#37
Thanks Lucky Cris. Would you or anyone else happen to know what the other file is?
sr. member
Activity: 280
Merit: 250
August 18, 2014, 01:41:11 PM
#36
OP, just wanted to point out that some of these coins put the pchmeassagestart hex value in another file; so if it's not in the main.cpp it could be in another. I don't know if it has any significance, but figure I'd at least advise so you can update the OP
newbie
Activity: 5
Merit: 0
August 18, 2014, 01:27:12 PM
#35
Great work .

I was wondering is there anybody who can help out with karmacoin settings ?

Chears
full member
Activity: 129
Merit: 102
June 20, 2014, 07:01:06 PM
#34
hey i was looking for a bit of help with my fuelcoin p2pool just wanted to make sure i had everything setup correctly. i am connected and have everything going Smiley so that is no longer an issue. i just want to make sure my values are correct.

Hey, I went ahead and edited the config files to suit FuelCoin, there were a few changes that needed to be made.

I've posted the code up on pastebin if you'd like to have a look.

FuelCoin recommended settings for P2Pool nodes;

http://pastebin.com/PQTWdjcP
legendary
Activity: 964
Merit: 1000
June 20, 2014, 01:08:28 AM
#33
hey i was looking for a bit of help with my fuelcoin p2pool just wanted to make sure i had everything setup correctly. i am connected and have everything going Smiley so that is no longer an issue. i just want to make sure my values are correct.

p2pool file

fuelcoin=math.Object(
        PARENT=networks.nets['fuelcoin'],
        SHARE_PERIOD=6, # seconds
        CHAIN_LENGTH=6*60*60//10, # shares
        REAL_CHAIN_LENGTH=7*24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=60, # blocks
        IDENTIFIER='fc70035c7a81bc6f'.decode('hex'),
        PREFIX='2472ef181efcd37b'.decode('hex'),
        P2P_PORT=9111,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**32 - 1,
        PERSIST=False,
        WORKER_PORT=9222,
        BOOTSTRAP_ADDRS='98.174.25.28 173.230.51.38 173.230.49.15 173.79.134.197'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool',
        VERSION_CHECK=lambda v: True,
        VERSION_WARNING=lambda v: 'Upgrade Fuelcoin to >=0.8.5!' if v < 80500 else None,


bitcoin file

    fuelcoin=math.Object(
        P2P_PREFIX='f5d3a3d0'.decode('hex'),
        P2P_PORT=9111,
        ADDRESS_VERSION=36,
        RPC_PORT=9222,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'FuelCoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//840000,
        POW_FUNC=data.hash256,
        BLOCK_PERIOD=30, # s
        SYMBOL='FUEL',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Fuelcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Fuelcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.fuelcoin'), 'fuelcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://explorer.litecoin.net/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://explorer.litecoin.net/address/',
        TX_EXPLORER_URL_PREFIX='http://explorer.litecoin.net/tx/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.03e8,
    ),


I am also having problems with the pool showing blocks that were not mined by any of the miners on the pool.
and the pool hashrate has continued to rise past 3th/s when i only have 1th/s on it.
the address is http://99.236.215.227:9222/static/ it seems to be a bit more accurate now. but still not great ive changed the settings around a bit. for the share per second trying to play with it.
legendary
Activity: 1120
Merit: 1000
Sorry for the bump, just didnt see it neccessary to make a new thread;

Did anyone find a solution for getting stuck on
Code:
2014-05-13 05:42:20.871001 Testing bitcoind P2P connection to '127.0.0.1:1217'...
2014-05-13 05:42:25.871320     ...taking a while. Common reasons for this include all of bitcoind's connection slots being used...
2014-05-13 05:43:21.048088 > Bitcoin connection lost. Reason: Connection was closed cleanly.
full member
Activity: 190
Merit: 100
April 18, 2014, 06:32:23 AM
#31
nice work here  Wink
Pages:
Jump to: