Bitcoin Forum
April 25, 2024, 01:28:06 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 [744] 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 ... 814 »
  Print  
Author Topic: [1500 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool  (Read 2591624 times)
LevinSwe
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
December 25, 2016, 01:04:35 PM
 #14861

I found my first block!BTC It was my laundry miner who found it, a BitmainS9 as I only had a week. My girlfriend hates it, but it dries the laundry really fast. Grin
http://scadainfo.com/pic/0699.jpg
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714051686
Hero Member
*
Offline Offline

Posts: 1714051686

View Profile Personal Message (Offline)

Ignore
1714051686
Reply with quote  #2

1714051686
Report to moderator
1714051686
Hero Member
*
Offline Offline

Posts: 1714051686

View Profile Personal Message (Offline)

Ignore
1714051686
Reply with quote  #2

1714051686
Report to moderator
1714051686
Hero Member
*
Offline Offline

Posts: 1714051686

View Profile Personal Message (Offline)

Ignore
1714051686
Reply with quote  #2

1714051686
Report to moderator
windpath
Legendary
*
Offline Offline

Activity: 1258
Merit: 1027


View Profile WWW
December 25, 2016, 03:48:58 PM
 #14862

I found my first block!BTC It was my laundry miner who found it, a BitmainS9 as I only had a week. My girlfriend hates it, but it dries the laundry really fast. Grin


Congrats!
flameruk
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile WWW
December 26, 2016, 12:22:33 PM
 #14863

Hi folks. Is there any issue running classic as the backend for P2Pool or does it need to be core?
Just I am upgrading a rack server this week at work during the holiday and the old box will be reprovisioned as a uk node.
Something I've wanted to do for a while to lower my latency and we have a direct Ethernet comnection at work so probably makes sense.

Find my P2POOL node at www.ukp2pool.uk:9332

Donations for operating node?
BTC  1CYevtGy3aqr1reuq7CFceNFAT7snsz3VM
windpath
Legendary
*
Offline Offline

Activity: 1258
Merit: 1027


View Profile WWW
December 26, 2016, 02:28:24 PM
 #14864

Hi folks. Is there any issue running classic as the backend for P2Pool or does it need to be core?
Just I am upgrading a rack server this week at work during the holiday and the old box will be reprovisioned as a uk node.
Something I've wanted to do for a while to lower my latency and we have a direct Ethernet comnection at work so probably makes sense.

You need to change the block version in the P2Pool source code, it's line 372 in work.py, to:

Code:
Code:
version=min(self.current_work.value['version'], 0x30000000),

or

Code:
Code:
version=min(self.current_work.value['version'], 805306368),

Both work.
veqtrus
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile WWW
December 26, 2016, 05:41:38 PM
 #14865

... classic as the backend for P2Pool ...

You need to change the block version in the P2Pool source code, it's line 372 in work.py, to:

...

This is no longer needed.

P2Pool donation button | Bitrated user: veqtrus.
windpath
Legendary
*
Offline Offline

Activity: 1258
Merit: 1027


View Profile WWW
December 27, 2016, 01:19:57 AM
 #14866

... classic as the backend for P2Pool ...

You need to change the block version in the P2Pool source code, it's line 372 in work.py, to:

...

This is no longer needed.

Thanks for the heads up, but can you clarify what the new version from you commit signals for?

Code:
version=max(self.current_work.value['version'], 0x20000000),
veqtrus
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile WWW
December 27, 2016, 12:09:41 PM
 #14867

Thanks for the heads up, but can you clarify what the new version from you commit signals for?

Code:
version=max(self.current_work.value['version'], 0x20000000),

0x20000000 is BIP9 with no deployment bits set. If some are set the version will be larger; therefore the version should always be at least 0x20000000 (what my code does).

Edit: This means that whatever BIP9 compatible version bitcoind is suggesting will be used as is.

P2Pool donation button | Bitrated user: veqtrus.
windpath
Legendary
*
Offline Offline

Activity: 1258
Merit: 1027


View Profile WWW
December 27, 2016, 02:47:00 PM
 #14868

Thanks for the heads up, but can you clarify what the new version from you commit signals for?

Code:
version=max(self.current_work.value['version'], 0x20000000),

0x20000000 is BIP9 with no deployment bits set. If some are set the version will be larger; therefore the version should always be at least 0x20000000 (what my code does).

Edit: This means that whatever BIP9 compatible version bitcoind is suggesting will be used as is.

Thanks for taking the time to clarify, and appreciate your contribution. So basically P2Pool will signal for whatever flavor of Bitcoin client you are running signals for...

KorbinDallas
Newbie
*
Offline Offline

Activity: 55
Merit: 0


View Profile
December 28, 2016, 12:54:51 AM
 #14869

Whoa! 10 PH/s  Shocked
flameruk
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile WWW
December 29, 2016, 10:56:04 PM
 #14870

Hi folks. Is there any issue running classic as the backend for P2Pool or does it need to be core?
Just I am upgrading a rack server this week at work during the holiday and the old box will be reprovisioned as a uk node.
Something I've wanted to do for a while to lower my latency and we have a direct Ethernet comnection at work so probably makes sense.

Thanks for the info.

I will go with classic as in my mind it's a better solution to Segwit and cores principles.
Please don't thrash me over this one. I'm still reading about Segwit but it seems to begin to steer ownership towards core of the network.

The new hardware never arrived this week so I'll have to wait a couple more days into the new year.
I hashed up Ubuntu on an old office PC and started to get things working but nah the processors having none of it.
Until then I'll keep mining to another node.

Find my P2POOL node at www.ukp2pool.uk:9332

Donations for operating node?
BTC  1CYevtGy3aqr1reuq7CFceNFAT7snsz3VM
in2tactics
Hero Member
*****
Offline Offline

Activity: 578
Merit: 501



View Profile
December 30, 2016, 01:21:53 AM
 #14871

Hi folks. Is there any issue running classic as the backend for P2Pool or does it need to be core?
Just I am upgrading a rack server this week at work during the holiday and the old box will be reprovisioned as a uk node.
Something I've wanted to do for a while to lower my latency and we have a direct Ethernet comnection at work so probably makes sense.

Thanks for the info.

I will go with classic as in my mind it's a better solution to Segwit and cores principles.
Please don't thrash me over this one. I'm still reading about Segwit but it seems to begin to steer ownership towards core of the network.

The new hardware never arrived this week so I'll have to wait a couple more days into the new year.
I hashed up Ubuntu on an old office PC and started to get things working but nah the processors having none of it.
Until then I'll keep mining to another node.
I do not think anyone cares which software you use. It is more important that you properly configure your node for quick block submission and for optimal transaction payout versus worrying over SegWit support yes or no.

Current HW: 2x Apollo
Retired HW: 3x 2PAC, 3x Moonlander 2, 2x AntMiner S7-LN, 5x AntMiner U1, 2x ASICMiner Block Erupter Cube, 4x AntMiner S3, 4x AntMiner S1, GAW Black Widow, and ZeusMiner Thunder X6
veqtrus
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile WWW
December 30, 2016, 01:27:25 PM
 #14872

I will go with classic as in my mind it's a better solution to Segwit and cores principles.

I'm not going to argue about whether or not SegWit is good but once it is certain that it will activate P2Pool will have to fork to produce SegWit blocks and if your node doesn't support it by then you will be forked off the P2Pool network.

P2Pool donation button | Bitrated user: veqtrus.
tubexc
Hero Member
*****
Offline Offline

Activity: 496
Merit: 500


View Profile
December 30, 2016, 06:48:54 PM
 #14873

Renting hashrate and listening :
Jennifer Lopez - Jenny from the Block - YouTube
https://www.youtube.com/watch?v=dly6p4Fu5TE   Grin
in2tactics
Hero Member
*****
Offline Offline

Activity: 578
Merit: 501



View Profile
December 31, 2016, 12:02:06 PM
 #14874

Renting hashrate and listening :
Jennifer Lopez - Jenny from the Block - YouTube
https://www.youtube.com/watch?v=dly6p4Fu5TE   Grin
I thought that for sure we were going to find a block during that huge spike.

Current HW: 2x Apollo
Retired HW: 3x 2PAC, 3x Moonlander 2, 2x AntMiner S7-LN, 5x AntMiner U1, 2x ASICMiner Block Erupter Cube, 4x AntMiner S3, 4x AntMiner S1, GAW Black Widow, and ZeusMiner Thunder X6
flameruk
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile WWW
December 31, 2016, 12:12:04 PM
 #14875

I will go with classic as in my mind it's a better solution to Segwit and cores principles.

I'm not going to argue about whether or not SegWit is good but once it is certain that it will activate P2Pool will have to fork to produce SegWit blocks and if your node doesn't support it by then you will be forked off the P2Pool network.

Yep I'm aware of that. Figure p2Pool might even activate before the rest of the network as well.
Guess that's something I'm going to have to go with to stick with P2Pool.

I got a test node running at

http://81.131.94.77:9332/static/

It's not been tweaked for efficiency as it's running on my Centos box at home.
Slow processor, lack of memory slow hard drives.
At least I can get it up and running, I've got a half broken S7 mining to it now.
Gives me a few days to play around with it until the new rack server arrives on Tuesday.
Once that's in I'll use a spare IP at the office and it can sit on our leased line and on the same subnet as my Miners.
Then I can get down to some serious tweaking.

Cool, enjoying the ride.


Find my P2POOL node at www.ukp2pool.uk:9332

Donations for operating node?
BTC  1CYevtGy3aqr1reuq7CFceNFAT7snsz3VM
tubexc
Hero Member
*****
Offline Offline

Activity: 496
Merit: 500


View Profile
January 01, 2017, 12:07:08 PM
 #14876

Block found.!!!
Fireworks
Happy 2017  Smiley
in2tactics
Hero Member
*****
Offline Offline

Activity: 578
Merit: 501



View Profile
January 01, 2017, 12:27:02 PM
 #14877

Block found.!!!
Fireworks
Happy 2017  Smiley
Yup, it is nice to bring in the new year with a block.

Current HW: 2x Apollo
Retired HW: 3x 2PAC, 3x Moonlander 2, 2x AntMiner S7-LN, 5x AntMiner U1, 2x ASICMiner Block Erupter Cube, 4x AntMiner S3, 4x AntMiner S1, GAW Black Widow, and ZeusMiner Thunder X6
mahrens917
Member
**
Offline Offline

Activity: 78
Merit: 10


View Profile WWW
January 02, 2017, 04:36:27 AM
 #14878

The node scanner at p2pool.co is back up and working at http://p2pool.co. It was down for a little while.  Please try it out.  Feedback is always welcome.

Find the pool with the best payout!
nodes.p2pool.co
sawa
Legendary
*
Offline Offline

Activity: 1308
Merit: 1011



View Profile
January 02, 2017, 05:23:03 AM
 #14879

The node scanner at p2pool.co is back up and working at http://p2pool.co. It was down for a little while.  Please try it out.  Feedback is always welcome.
On this node scanner always limited node list. You must manually add them?
Why not add all nodes with http://poolnode.info/?

in2tactics
Hero Member
*****
Offline Offline

Activity: 578
Merit: 501



View Profile
January 02, 2017, 09:10:52 AM
 #14880

The node scanner at p2pool.co is back up and working at http://p2pool.co. It was down for a little while.  Please try it out.  Feedback is always welcome.
On this node scanner always limited node list. You must manually add them?
Why not add all nodes with http://poolnode.info/?
I always see way more nodes with poolnode.info while I usually only see a few on p2pool.co, but I am not really sure why.

Current HW: 2x Apollo
Retired HW: 3x 2PAC, 3x Moonlander 2, 2x AntMiner S7-LN, 5x AntMiner U1, 2x ASICMiner Block Erupter Cube, 4x AntMiner S3, 4x AntMiner S1, GAW Black Widow, and ZeusMiner Thunder X6
Pages: « 1 ... 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 [744] 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 ... 814 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!