Author

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

legendary
Activity: 2968
Merit: 1198
The luck on BtC has been terrible the last 3 days, I have found zero blocks. Sad

Very bad over the past five days. Nothing for 3 days and the one before that was 2 days (should be one per day on average).

http://p2pool.info/
hero member
Activity: 630
Merit: 501
The luck on BtC has been terrible the last 3 days, I have found zero blocks. Sad

hero member
Activity: 686
Merit: 500
WANTED: Active dev to fix & re-write p2pool in C
Currently in the planning stage of setting up a P2Pool node to merge-mine for a <2.8TH/s Bitmine Rig due to be delivered in late March.  What diff should we set for the miner and is there and links to some good tips on setting up a good P2Pool node (to merge-mine)?  Interested after reading this - https://en.bitcoin.it/wiki/P2Pool#Useful_features

I found this a great help:

https://bitcointalksearch.org/topic/a-guide-for-mining-efficiently-on-p2pool-includes-fud-repellent-and-faq-153232
hero member
Activity: 686
Merit: 500
WANTED: Active dev to fix & re-write p2pool in C
I noticed this has started appearing when I start p2pool after doing some compiling on my node:

"/usr/lib/python2.7/dist-packages/zope/__init__.py:3: UserWarning: Module twisted was already imported from /usr/lib/python2.7/dist-packages/twisted/__init__.pyc, but /usr/local/lib/python2.7/dist-packages/autobahn-0.7.4-py2.7.egg is being added to sys.path"

It appears right at the start before p2pool does it's thing - but everything seems to be working OK with no errors. Have I accidentally added something I don't need - and should I get rid of it?

Thanks.

Anyone?

This thread goes awfully quiet when there's a lean streak....... Cheesy
legendary
Activity: 1372
Merit: 1003
Currently in the planning stage of setting up a P2Pool node to merge-mine for a <2.8TH/s Bitmine Rig due to be delivered in late March.  What diff should we set for the miner and is there and links to some good tips on setting up a good P2Pool node (to merge-mine)?  Interested after reading this - https://en.bitcoin.it/wiki/P2Pool#Useful_features
hero member
Activity: 686
Merit: 500
WANTED: Active dev to fix & re-write p2pool in C
I noticed this has started appearing when I start p2pool after doing some compiling on my node:

"/usr/lib/python2.7/dist-packages/zope/__init__.py:3: UserWarning: Module twisted was already imported from /usr/lib/python2.7/dist-packages/twisted/__init__.pyc, but /usr/local/lib/python2.7/dist-packages/autobahn-0.7.4-py2.7.egg is being added to sys.path"

It appears right at the start before p2pool does it's thing - but everything seems to be working OK with no errors. Have I accidentally added something I don't need - and should I get rid of it?

Thanks.
hero member
Activity: 630
Merit: 501
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,

I think it uses BTC everywhere ... can you provide a screenshot of where it uses the bitcoin symbol?


p2pool.smoothrunnings.ca:9332/



That's specific to the front end your using...modifty the part of the code that uses that font.

Code:

...
    // Places the currency this node is mining in the page header.  If it's
    // Bitcoin, use the fontawesome BTC icon.

    var set_currency_symbol= true;
    $(document).on('update_currency', function(e, eventInfo) {
      if(currency_info.symbol === 'BTC') {
        // use fontawesome BTC symbol
        currency= $('').attr('class', 'fa fa-btc fa-fw');
      }
      else { currency= $('').append(currency_info.symbol); }

      if(set_currency_symbol) {
        $('#currency')
          .append('(').append(currency).append(')');
        set_currency_symbol= false;
      }
    });

When I open this file in kwrite I don't see the code you have posted. And I can't seem to find a true CSS editor for Linux. Sad
legendary
Activity: 1270
Merit: 1000
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,

I think it uses BTC everywhere ... can you provide a screenshot of where it uses the bitcoin symbol?


p2pool.smoothrunnings.ca:9332/



That's specific to the front end your using...modifty the part of the code that uses that font.

Code:

...
    // Places the currency this node is mining in the page header.  If it's
    // Bitcoin, use the fontawesome BTC icon.

    var set_currency_symbol= true;
    $(document).on('update_currency', function(e, eventInfo) {
      if(currency_info.symbol === 'BTC') {
        // use fontawesome BTC symbol
        currency= $('').attr('class', 'fa fa-btc fa-fw');
      }
      else { currency= $('').append(currency_info.symbol); }

      if(set_currency_symbol) {
        $('#currency')
          .append('(').append(currency).append(')');
        set_currency_symbol= false;
      }
    });
hero member
Activity: 630
Merit: 501
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,

I think it uses BTC everywhere ... can you provide a screenshot of where it uses the bitcoin symbol?


p2pool.smoothrunnings.ca:9332/

sr. member
Activity: 295
Merit: 250
Thanks to y'alls tips, I was able to get a public pool up and running. Smiley It's hosted in the US, in Orlando, FL.  Feel free to connect and use it if you like! Smiley

p2pool2.kyros.info:9332
hero member
Activity: 686
Merit: 500
WANTED: Active dev to fix & re-write p2pool in C
Hey guys, what bad things come from having a high getwork latency? I'm under the impression that stratum makes getwork irrelevant, but I'm a bit worried that mine is quite high (sometimes a few seconds, you can see it here http://www.blisterpool.com/stats in the graphs bit). Is this a symptom of anything in particular? The cpu doesn't seem to be under any enormous stress, but it does peak every now and then...is this the cause?

Also, I helped a miner get configured to run on my p2pool node, and he has some ASICMiner blades (~10.7GH each). Google search results (most seem to be from a year ago) have all told me that they naturally have high DOA rate with p2pool, without any real way to fix it. Is this still the case? His dead rate is around 40-50%. I also noticed the server was getting absolutely hammered with hash > target spam, and I suggested to the miner to use his bitcoin address+1 for his username. It reduced the server spam drastically (from 100/sec to several/sec), and reduced his DOA a little bit, but it also reduced his mean hashing power by about 10%. Could anyone explain to me what's going on here? I'd like to help him get better results.

Blades are one of the many hardware that don't work with p2pool. Sorry.
hero member
Activity: 994
Merit: 1000
Hey guys, what bad things come from having a high getwork latency? I'm under the impression that stratum makes getwork irrelevant, but I'm a bit worried that mine is quite high (sometimes a few seconds, you can see it here http://www.blisterpool.com/stats in the graphs bit). Is this a symptom of anything in particular? The cpu doesn't seem to be under any enormous stress, but it does peak every now and then...is this the cause?

Also, I helped a miner get configured to run on my p2pool node, and he has some ASICMiner blades (~10.7GH each). Google search results (most seem to be from a year ago) have all told me that they naturally have high DOA rate with p2pool, without any real way to fix it. Is this still the case? His dead rate is around 40-50%. I also noticed the server was getting absolutely hammered with hash > target spam, and I suggested to the miner to use his bitcoin address+1 for his username. It reduced the server spam drastically (from 100/sec to several/sec), and reduced his DOA a little bit, but it also reduced his mean hashing power by about 10%. Could anyone explain to me what's going on here? I'd like to help him get better results.
hero member
Activity: 516
Merit: 643
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,

I think it uses BTC everywhere ... can you provide a screenshot of where it uses the bitcoin symbol?
hero member
Activity: 630
Merit: 501
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,

It's JavaScript not Java. And why don't you just replace the header insert span with "BTC" hard coded?

Because I might want to setup another server using a different alt-coin and don't want to have to go and modify the code.
hero member
Activity: 798
Merit: 1000
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,

It's JavaScript not Java. And why don't you just replace the header insert span with "BTC" hard coded?
hero member
Activity: 630
Merit: 501
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,
legendary
Activity: 2912
Merit: 1060
Thank you all for the excellent answers! =)

One last question, please.  If I use both the -a and --fee parameters, does the fee go to the address specified by the -a parameter, or does it go to the wallet of the local bitcoind?

The reason I'm asking is, I'm thinking of setting up a public p2pool node on a VPS I have; it's already running a bitcoind node just to help the network, but the wallet is empty and unused.  If I install p2pool there, I would want the fees to go directly to my main wallet, not to the empty and unmonitored wallet on the VPS.

a
Awesome, thank you! Smiley

Edit: Possibly the most helpful one-letter answer I've ever seen. Cheesy

I know I'm proud Smiley
sr. member
Activity: 295
Merit: 250
Thank you all for the excellent answers! =)

One last question, please.  If I use both the -a and --fee parameters, does the fee go to the address specified by the -a parameter, or does it go to the wallet of the local bitcoind?

The reason I'm asking is, I'm thinking of setting up a public p2pool node on a VPS I have; it's already running a bitcoind node just to help the network, but the wallet is empty and unused.  If I install p2pool there, I would want the fees to go directly to my main wallet, not to the empty and unmonitored wallet on the VPS.

a
Awesome, thank you! Smiley

Edit: Possibly the most helpful one-letter answer I've ever seen. Cheesy
legendary
Activity: 2912
Merit: 1060
Thank you all for the excellent answers! =)

One last question, please.  If I use both the -a and --fee parameters, does the fee go to the address specified by the -a parameter, or does it go to the wallet of the local bitcoind?

The reason I'm asking is, I'm thinking of setting up a public p2pool node on a VPS I have; it's already running a bitcoind node just to help the network, but the wallet is empty and unused.  If I install p2pool there, I would want the fees to go directly to my main wallet, not to the empty and unmonitored wallet on the VPS.

a
sr. member
Activity: 295
Merit: 250
Thank you all for the excellent answers! =)

One last question, please.  If I use both the -a and --fee parameters, does the fee go to the address specified by the -a parameter, or does it go to the wallet of the local bitcoind?

The reason I'm asking is, I'm thinking of setting up a public p2pool node on a VPS I have; it's already running a bitcoind node just to help the network, but the wallet is empty and unused.  If I install p2pool there, I would want the fees to go directly to my main wallet, not to the empty and unmonitored wallet on the VPS.
Jump to:
© 2020, Bitcointalksearch.org