Pages:
Author

Topic: [1500 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool - page 94. (Read 2591920 times)

newbie
Activity: 12
Merit: 0
Hi

i'm having a problem using p2pool

Code:
root@security:~/p2pool# python run_p2pool.py
2016-03-22 13:27:39.377908 p2pool (version 15.0-14-g6f114e5)
2016-03-22 13:27:39.378008
2016-03-22 13:27:39.378098 Testing bitcoind RPC connection to 'http://127.0.0.1:8332/' with username 'bitcoinrpc'...
2016-03-22 13:27:39.410914 > Error getting work from bitcoind:
2016-03-22 13:27:39.410997 > Traceback (most recent call last):
2016-03-22 13:27:39.411032 >   File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 577, in _runCallbacks
2016-03-22 13:27:39.411060 >     current.result = callback(current.result, *args, **kw)
2016-03-22 13:27:39.411088 >   File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1155, in gotResult
2016-03-22 13:27:39.411116 >     _inlineCallbacks(r, g, deferred)
2016-03-22 13:27:39.411143 >   File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1097, in _inlineCallbacks
2016-03-22 13:27:39.411176 >     result = result.throwExceptionIntoGenerator(g)
2016-03-22 13:27:39.411209 >   File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2016-03-22 13:27:39.411238 >     return g.throw(self.type, self.value, self.tb)
2016-03-22 13:27:39.411275 > --- ---
2016-03-22 13:27:39.411301 >   File "/root/p2pool/p2pool/util/deferral.py", line 41, in f
2016-03-22 13:27:39.411327 >     result = yield func(*args, **kwargs)
2016-03-22 13:27:39.411360 >   File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1097, in _inlineCallbacks
2016-03-22 13:27:39.411387 >     result = result.throwExceptionIntoGenerator(g)
2016-03-22 13:27:39.411417 >   File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2016-03-22 13:27:39.411458 >     return g.throw(self.type, self.value, self.tb)
2016-03-22 13:27:39.411495 >   File "/root/p2pool/p2pool/bitcoin/helper.py", line 48, in getwork
2016-03-22 13:27:39.411530 >     work = yield go()
2016-03-22 13:27:39.411568 >   File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1097, in _inlineCallbacks
2016-03-22 13:27:39.411595 >     result = result.throwExceptionIntoGenerator(g)
2016-03-22 13:27:39.411619 >   File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2016-03-22 13:27:39.411644 >     return g.throw(self.type, self.value, self.tb)
2016-03-22 13:27:39.411668 >   File "/root/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2016-03-22 13:27:39.411692 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2016-03-22 13:27:39.411717 > p2pool.util.jsonrpc.NarrowError: -10 Bitcoin is downloading blocks...
^Croot@security:~/p2pool#

and it still say "Bitcoin is downloading blocks..." any one knows how it would take ?
full member
Activity: 196
Merit: 100
if i set up p2pool with -a my adress will it pay out to that one only?
like if my friend mine at my p2pool and uses his own btc adress will it go to him `?
BUMP
member
Activity: 88
Merit: 10
Wait at least a couple days. The situation can change very fast!

you are aware of something new Cheesy
Russian group continued practicing p2pool and endeavours to ensure that p2pool is fully operational. We all need support! More power at the pool and we'll be happy!
Hope dies last.
legendary
Activity: 1257
Merit: 1004
pool.sexy
Wait at least a couple days. The situation can change very fast!

you are aware of something new Cheesy
member
Activity: 88
Merit: 10
Sad Sadly I have shutdown my 'mining corporation' today.
Wait at least a couple days. The situation can change very fast!
full member
Activity: 196
Merit: 100
if i set up p2pool with -a my adress will it pay out to that one only?
like if my friend mine at my p2pool and uses his own btc adress will it go to him `?
newbie
Activity: 8
Merit: 0
 Sad Sadly I have shutdown my 'mining corporation' today. The lack of hashing power in p2pool nowaydays and the long times to hit a block lately because of that, have made it unprofitable to such a degree that it has become unsustainable. The 3 day limit on shares is just too low when finding a block takes about a month. p2pool has been a fine place to be over the years but unless something drastically changes, I won't power on my miners again. Will keep reading though Smiley

May the chain be with you.

Alfi
legendary
Activity: 1258
Merit: 1027
You can change this behavior by storing your found shares somewhere (like a DB), and then loading them into the front end from there, this is how we do it on my site....

Would you be able to share a patch for this ?

It's not quite that simple as it requires an additional layer of storage (and retrieval for the front end), simplest way to do it is to monitor the log file for new shares, store them somewhere and retrieve them for the front end.
member
Activity: 193
Merit: 10
You can change this behavior by storing your found shares somewhere (like a DB), and then loading them into the front end from there, this is how we do it on my site....

Would you be able to share a patch for this ?
legendary
Activity: 1258
Merit: 1027
Hi,

Anyone can tell me why everytime I restart my p2pool. the list of share in My Shares is not being load. its just blank.

I know the payment is not gone but is it supposed to be this way or is there any way to reload it?

Thanks.

Your found shares displayed on the front end are stored in memory, when you restart P2Pool that memory is wiped.

Your actual found shares remain in the share chain for ~3 days and will be paid when/if a block is found.

You can change this behavior by storing your found shares somewhere (like a DB), and then loading them into the front end from there, this is how we do it on my site....

legendary
Activity: 2212
Merit: 1038
Block!  Grin

Man, that was a tough patch. 27.90% luck...miners dropped from the mid 200 to under 170 :/

newbie
Activity: 48
Merit: 0
Hi,

Anyone can tell me why everytime I restart my p2pool. the list of share in My Shares is not being load. its just blank.

I know the payment is not gone but is it supposed to be this way or is there any way to reload it?

Thanks.
legendary
Activity: 3164
Merit: 2258
I fix broken miners. And make holes in teeth :-)
Block!  Grin

Man, that was a tough patch. 27.90% luck...miners dropped from the mid 200 to under 170 :/
A what?
legendary
Activity: 1270
Merit: 1000
Block!  Grin

Man, that was a tough patch. 27.90% luck...miners dropped from the mid 200 to under 170 :/
legendary
Activity: 1512
Merit: 1012
Is this the longest P2Pool has ever gone without hitting a block?

when global power rise ... and P2Pool is stable (or decline like now), you can't fight.
it's only 0,5 Ph/s after all.

http://bitcoin.sipa.be/
legendary
Activity: 2212
Merit: 1038
The attention from an Ethereum p2pool would probably bring in additional SHA hashers.
legendary
Activity: 2212
Merit: 1038
What's the pool hashrate at?

I've been mining alts for a bit. Not to be critical of Bitmain at all but um yeah, I'm not going to tinker with that firmaware at all... So I use https://github.com/Rav3nPL/p2pool-rav as stratum proxy for solo mining alts.

Code:
C:\Users\Not Batman\Desktop\p2pool-rav\p2pool\networks\batcoin.py

PERSIST = False
BOOTSTRAP_ADDRS = ''.split(' ')


Could I just upload my own cgminer or go pro with bfgminer to the ram disk, yeah but then I don't get all sorts of useful information and it's better that the interface with the node is on the same box.
hero member
Activity: 798
Merit: 1000


Ahh Blocks, I remember those...





Pages:
Jump to: