Forum Home
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular

    \[ANN\] Community Pay Back P2Pool \[mine-ftc.co.uk\]

    Mining
    7
    17
    5773
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • U
      uncle_muddy administrators last edited by

      Shameless bump ;)

      Hoping to get the next bit of this sorted out and with you guys later today

      UM

      1 Reply Last reply Reply Quote 0
      • U
        uncle_muddy administrators last edited by

        and here it is…

        http://forum.feathercoin.com/index.php/topic,7362.0.html

        1 Reply Last reply Reply Quote 0
        • C
          Chirale last edited by

          Uncle_muddy,
          Pool and raffle are great! I will redirect my FTC miners to your pool from tonight!
          Looking forward catching up at the Oxford blue!
          Bye

          1 Reply Last reply Reply Quote 0
          • U
            uncle_muddy administrators last edited by

            Cheers Chirale, will be goof to catch up again :) see you next week

            UM

            1 Reply Last reply Reply Quote 0
            • U
              uncle_muddy administrators last edited by

              Pool has now been upgrade to 0.8.6.2, I need to reinstall the web interface but mining connections are working and payouts are taking place.

              UM

              1 Reply Last reply Reply Quote 0
              • W
                wec Regular Member last edited by

                UM,

                Did you modify the feathercoin math object code in p2pool/bitcoin/networks.py and p2pool/networks.py to reflect the hardfork changes?

                1 Reply Last reply Reply Quote 0
                • U
                  uncle_muddy administrators last edited by

                  wec,

                  No I didn’t change anything I just did another pull from git. Can someone tell me what needs to updated please? Just taken a look at the code and there looks to be some form of version checking in there, is this something we can use to our advantage?

                          VERSION_WARNING=lambda v: 'Upgrade Terracoin to >= 0.8.0.1!' if v < 80001 else None,
                      ),
                      feathercoin=math.Object(
                          PARENT=networks.nets['feathercoin'],
                          SHARE_PERIOD=30, # seconds
                          CHAIN_LENGTH=60*60//10, # shares
                          REAL_CHAIN_LENGTH=60*60//10, # shares
                          TARGET_LOOKBEHIND=200, # shares
                          SPREAD=120, # blocks
                          IDENTIFIER='4665617468657221'.decode('hex'),
                          PREFIX='b131010ba6d4729a'.decode('hex'),
                          P2P_PORT=19339,
                          MIN_TARGET=0,
                          MAX_TARGET=2**256//2**20 - 1,
                          PERSIST=False,
                          WORKER_PORT=19327,
                          BOOTSTRAP_ADDRS='pool.maeh.org pool2.maeh.org'.split(' '),
                          ANNOUNCE_CHANNEL='#p2pool-alt',
                          VERSION_CHECK=lambda v: True,
                      ),
                  
                  1 Reply Last reply Reply Quote 0
                  • wrapper
                    wrapper Moderators last edited by

                    We (Wellenreiter and I) did a bit of work on this as part of the testing. Spynnaples is now in charge of good Feathercoin p2pool fork.

                    I’ll contact them and tell them the updates can be ready for the fork. Most of the information automatically adjusted, it might need a couple of tweeks. I do’nt see any point in trying to automate the process sit will be a once only change, we just needs the updated version ready.

                    Its another reason Pool owners will need more warning.

                    1 Reply Last reply Reply Quote 0
                    • Wellenreiter
                      Wellenreiter Moderators last edited by

                      It shouldn’t be a big problem.

                      In p2pool/bitcoin/networks.py we need to change

                       
                       SUBSIDY_FUNC=lambda height: 200*100000000 >> (height + 1)//3360000,
                       
                      

                      to

                       
                       SUBSIDY_FUNC=lambda height: 80*100000000 >> (height + 1)//3360000,
                       
                      

                      and

                      BLOCK_PERIOD=150, # s
                      

                      to

                      BLOCK_PERIOD=60, # s
                      

                      As I’m not very falmiliar with the protocol I don’t know, what the '(height + 1)//3360000 ’ means, so more changes may be needed in that line

                      Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
                      Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

                      1 Reply Last reply Reply Quote 0
                      • U
                        uncle_muddy administrators last edited by

                        We could do with knowing for certain, so we can get the guides updated and a few instructions out for those that need to upgrade their p2pool nodes.

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post