macdaddy
Newbie
Offline
Activity: 9
Merit: 0
|
|
April 17, 2014, 02:22:11 PM |
|
I have a P2Pool node up and running and I've been testing it a few days. It's been running stable and I was wondering how I should publish it for other folks to use. It's running on a hosted server so latency should be low. Doing some searches, I didn't find anything other than the announce to IRC channel switch (that didn't work). Any help would be appreciated, I just didn't want to throw it out there in the wrong place.
|
|
|
|
oldbushie
Member
Offline
Activity: 94
Merit: 10
|
|
April 17, 2014, 03:37:28 PM |
|
Will that mess up an apt-get install at all?
|
|
|
|
roy7
|
|
April 17, 2014, 03:52:48 PM |
|
Will that mess up an apt-get install at all?
You might want to uninstall the old apt package so you don't accidentially run the wrong one at some point. But the binary is a standalone with no separate includes, libraries, etc needed. Just put the bitcoind wherever you want and run it from there directly.
|
|
|
|
oldbushie
Member
Offline
Activity: 94
Merit: 10
|
|
April 18, 2014, 04:50:30 PM |
|
Will that mess up an apt-get install at all?
You might want to uninstall the old apt package so you don't accidentially run the wrong one at some point. But the binary is a standalone with no separate includes, libraries, etc needed. Just put the bitcoind wherever you want and run it from there directly. Thanks, I went ahead and did that. For now I'll just stick to manual updates of bitcoind so I don't have to rely on the PPA.
|
|
|
|
maqifrnswa
|
|
April 19, 2014, 05:18:58 AM |
|
Will that mess up an apt-get install at all?
You might want to uninstall the old apt package so you don't accidentially run the wrong one at some point. But the binary is a standalone with no separate includes, libraries, etc needed. Just put the bitcoind wherever you want and run it from there directly. Thanks, I went ahead and did that. For now I'll just stick to manual updates of bitcoind so I don't have to rely on the PPA. PPA wasn't out of date. 0.9.1 only linked against the patched openSSL. there was no need to release a new version in the PPA since ubuntu patched it for you. There was a discussion about this on the mailing list. They probably should have released 0.9.1 into the PPA to clear up confusion, but 0.9 in the PPA is the same as home-built 0.9.1
|
|
|
|
mamaspaliLa
Member
Offline
Activity: 116
Merit: 10
|
|
April 20, 2014, 11:36:52 AM |
|
how to up p2pool node of Doubloons DBL coin??
|
|
|
|
jonnybravo0311
Legendary
Offline
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
|
|
April 21, 2014, 06:24:24 PM |
|
So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc. I've got a question that I hope people can help answer:
How do I get more information into the JSON queries?
For example, in the global_stats, I see something like this:
{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}
How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?
Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.
Thanks for the help!
|
Jonny's Pool - Mine with us and help us grow! Support a pool that supports Bitcoin, not a hardware manufacturer's pockets! No SPV cheats. No empty blocks.
|
|
|
roy7
|
|
April 21, 2014, 06:31:21 PM |
|
So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc. I've got a question that I hope people can help answer:
How do I get more information into the JSON queries?
For example, in the global_stats, I see something like this:
{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}
How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?
Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.
Thanks for the help!
You can see an example of adding a miner_last_difficulties array, network_hashrate, and network_block_difficulty here: https://github.com/forrestv/p2pool/pull/191/files
|
|
|
|
jonnybravo0311
Legendary
Offline
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
|
|
April 21, 2014, 06:40:38 PM |
|
So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc. I've got a question that I hope people can help answer:
How do I get more information into the JSON queries?
For example, in the global_stats, I see something like this:
{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}
How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?
Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.
Thanks for the help!
You can see an example of adding a miner_last_difficulties array, network_hashrate, and network_block_difficulty here: https://github.com/forrestv/p2pool/pull/191/filesMuch obliged!
|
Jonny's Pool - Mine with us and help us grow! Support a pool that supports Bitcoin, not a hardware manufacturer's pockets! No SPV cheats. No empty blocks.
|
|
|
|
mdude77
Legendary
Offline
Activity: 1540
Merit: 1001
|
|
April 21, 2014, 10:25:23 PM |
|
So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc. I've got a question that I hope people can help answer:
How do I get more information into the JSON queries?
For example, in the global_stats, I see something like this:
{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}
How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?
Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.
Thanks for the help!
You can also check the code I use in mpoolmonitor in github. I make use of p2pool stats extensively in there. M
|
I mine at Kano's Pool because it pays the best and is completely transparent! Come join me!
|
|
|
Dave5
Member
Offline
Activity: 109
Merit: 10
|
|
April 21, 2014, 11:18:13 PM |
|
"Warning: LOST CONTACT WITH BITCOIND " Hi, I'm having a problem with my Dogecoin windows (32 bit) p2pool and would appreciate some help. I installed Dogecoin p2pool for window by following these instructions: http://www.reddit.com/r/dogemining/comments/1wmw3j/how_to_setup_p2pool_locally_windowsThe pool was running great for a day when I started having connection issues. For some reason connection to the p2pool or connection between the pool and the wallet QT is lost. The connection is lost 2 or 3 min after starting the p2pool. After that it's on and off connection. I disabled the firewall and anti-virus just to be sure its not blocking the connection, but that doesn't look like the cause. Both uPnP in Windows and my router are turned on. Here are some lines from my log file: 2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received 2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received 2014-04-21 18:46:29.698000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received 2014-04-21 18:46:31.601000 P2Pool: 5791 shares in chain (5441 verified/5795 total) Peers: 6 (0 incoming) 2014-04-21 18:46:31.601000 Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ??? 2014-04-21 18:46:31.601000 Shares: 0 (0 orphan, 0 dead) Stale rate: ??? Efficiency: ??? Current payout: 0.0000 DOGE 2014-04-21 18:46:31.601000 Pool: 1308MH/s Stale rate: 21.3% Expected time to block: 49.9 minutes 2014-04-21 18:48:10.053000 Lost peer 37.187.49.183:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.053000 Lost peer 67.11.62.236:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.053000 Lost peer 83.143.51.50:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.115000 Lost peer 108.48.45.12:22558 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.115000 Lost peer 220.135.202.202:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.131000 > ######################################## 2014-04-21 18:48:10.131000 > >>> Warning: LOST CONTACT WITH BITCOIND for 1.7 minutes! Check that it isn't frozen or dead! 2014-04-21 18:48:10.131000 > ######################################## 2014-04-21 18:48:10.131000 P2Pool: 5795 shares in chain (5446 verified/5800 total) Peers: 1 (0 incoming)
Any ideas on how to debug would be appreciated. Thank you!
|
|
|
|
jonnybravo0311
Legendary
Offline
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
|
|
April 22, 2014, 12:20:39 PM |
|
So I've been playing around with p2pool quite a bit, digging through code, modifying front end code to display things, etc. I've got a question that I hope people can help answer:
How do I get more information into the JSON queries?
For example, in the global_stats, I see something like this:
{"min_difficulty": 479474.8692329195, "pool_stale_prop": 0.1111111111111111, "pool_hash_rate": 136727809739777.47, "pool_nonstale_hash_rate": 121535830879802.19}
How would I add to that to get things like "expected_time_to_block", "last_block_found", "total_network_hashrate"?
Currently I've fudged the first two by hooking into p2pool.info directly to retrieve the data, but I'd like to have it come from the global_stats.
Thanks for the help!
You can also check the code I use in mpoolmonitor in github. I make use of p2pool stats extensively in there. M Thanks, I'll have a look. I'm not much of a windows programmer - I think the last time I touched an MS development environment was about 12 years ago, but I'll take a look through the code to see some examples of what you've done.
|
Jonny's Pool - Mine with us and help us grow! Support a pool that supports Bitcoin, not a hardware manufacturer's pockets! No SPV cheats. No empty blocks.
|
|
|
bilabonic
|
|
April 23, 2014, 06:41:37 PM |
|
How do i find out what i am owed on p2pool.org ? I have disconnected my 1Th miner, mining BTC, where do i look/search Cheers
|
BTC - 1Ayax24aAU8c1xwAakK94DVDkm4kbfZ8Ch
|
|
|
roy7
|
|
April 23, 2014, 07:03:30 PM |
|
How do i find out what i am owed on p2pool.org ? I have disconnected my 1Th miner, mining BTC, where do i look/search Cheers You should contact them on their support thread: https://bitcointalk.org/index.php?topic=176938.0p2pool.org is just a public node like many people run, it's not an official site/service/etc of the P2Pool project (which this thread is for).
|
|
|
|
Hunterbunter
|
|
April 23, 2014, 10:26:24 PM |
|
How do i find out what i am owed on p2pool.org ? I have disconnected my 1Th miner, mining BTC, where do i look/search It doesn't work like that with p2pool. You connect using a bitcoin address, and whenever a block is found it is automatically paid out. You earn shares in the pool while you mine on there (shares are distributed across all p2pool nodes). You can even switch between p2pool nodes (eg if one goes down), and your shares are kept up to date and continue. I've got 3 backup nodes set up on my miners. Some sites have a stats section where you can see how much you can expect to be paid if a block is found "now", and you'll get that, like this one: http://blisterpool.com/statsFor example, P2pool just found a block about 5 minutes ago, and I found that out from my bitcoin client, which told me I just got generation coins. Blisterpool is a p2pool node, but this one in particular pays out a bonus in dvc based on hashpower if you register a btc/dvc address pair.
|
|
|
|
zvs
Legendary
Offline
Activity: 1680
Merit: 1000
https://web.archive.org/web/*/nogleg.com
|
|
April 24, 2014, 11:07:32 PM |
|
"Warning: LOST CONTACT WITH BITCOIND " Hi, I'm having a problem with my Dogecoin windows (32 bit) p2pool and would appreciate some help. I installed Dogecoin p2pool for window by following these instructions: http://www.reddit.com/r/dogemining/comments/1wmw3j/how_to_setup_p2pool_locally_windowsThe pool was running great for a day when I started having connection issues. For some reason connection to the p2pool or connection between the pool and the wallet QT is lost. The connection is lost 2 or 3 min after starting the p2pool. After that it's on and off connection. I disabled the firewall and anti-virus just to be sure its not blocking the connection, but that doesn't look like the cause. Both uPnP in Windows and my router are turned on. Here are some lines from my log file: 2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received 2014-04-21 18:46:29.542000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received 2014-04-21 18:46:29.698000 Peer sent entire transaction 46d8afa3117bd5ded077d00259833063038ce8e58c80c3d79837a0dafe4110f5 that was already received 2014-04-21 18:46:31.601000 P2Pool: 5791 shares in chain (5441 verified/5795 total) Peers: 6 (0 incoming) 2014-04-21 18:46:31.601000 Local: 0H/s in last 0.0 seconds Local dead on arrival: ??? Expected time to share: ??? 2014-04-21 18:46:31.601000 Shares: 0 (0 orphan, 0 dead) Stale rate: ??? Efficiency: ??? Current payout: 0.0000 DOGE 2014-04-21 18:46:31.601000 Pool: 1308MH/s Stale rate: 21.3% Expected time to block: 49.9 minutes 2014-04-21 18:48:10.053000 Lost peer 37.187.49.183:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.053000 Lost peer 67.11.62.236:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.053000 Lost peer 83.143.51.50:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.115000 Lost peer 108.48.45.12:22558 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.115000 Lost peer 220.135.202.202:8555 - Connection to the other side was lost in a non-clean fashion. 2014-04-21 18:48:10.131000 > ######################################## 2014-04-21 18:48:10.131000 > >>> Warning: LOST CONTACT WITH BITCOIND for 1.7 minutes! Check that it isn't frozen or dead! 2014-04-21 18:48:10.131000 > ######################################## 2014-04-21 18:48:10.131000 P2Pool: 5795 shares in chain (5446 verified/5800 total) Peers: 1 (0 incoming)
Any ideas on how to debug would be appreciated. Thank you! Well, you probably have an old version of dogecoin. Did you cut 1m40s out of the log, or is that exactly what it looked like? If that's so, it's definitely an old version of dogecoin. (and a slow machine) if not, the only connection you've maintained is 127.0.0.1. so you have a connectivity issue
|
|
|
|
PublicP2poolNode
|
|
April 25, 2014, 02:40:54 AM Last edit: April 25, 2014, 03:02:04 AM by PublicP2poolNode |
|
I'm running a node, hosting a pool, thanks to you forestv... I am currently renting some hashing power and would have more options if I could enable stratum on my pool as many of my options only support stratum protocol. Any ideas where I could look into enabling stratum protocol on my p2pool node/pool?
|
WINGS Beta is live - List your ICO for only 5000 WINGS at https://wings.ai Over $650 Million raised by ICOs with WINGS since June 2017
|
|
|
jonnybravo0311
Legendary
Offline
Activity: 1344
Merit: 1024
Mine at Jonny's Pool
|
|
April 25, 2014, 04:31:00 AM |
|
p2pool supports stratum.
|
Jonny's Pool - Mine with us and help us grow! Support a pool that supports Bitcoin, not a hardware manufacturer's pockets! No SPV cheats. No empty blocks.
|
|
|
zvs
Legendary
Offline
Activity: 1680
Merit: 1000
https://web.archive.org/web/*/nogleg.com
|
|
April 25, 2014, 05:20:21 AM |
|
pls give refunds to rentee
|
|
|
|
|