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

    Feathercoin Fork

    Feathercoin Discussion
    19
    85
    79753
    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.
    • B
      bitboy11 Regular Member last edited by

      It is almost 3 weeks since I asked the question and received an answer but today I just launched my 0.9.5 wallet only to see a message stating: “Downgrade to 0.9.3.1”

      So I’m asking again if it is still OK to stay at 0.9.5 so long as I’m not Pool Mining or Solo Mining?

      AcidD 1 Reply Last reply Reply Quote 0
      • AcidD
        AcidD Moderators @bitboy11 last edited by

        @bitboy11 said:

        It is almost 3 weeks since I asked the question and received an answer but today I just launched my 0.9.5 wallet only to see a message stating: “Downgrade to 0.9.3.1”

        So I’m asking again if it is still OK to stay at 0.9.5 so long as I’m not Pool Mining or Solo Mining?

        I believe you’re correct. if you mine with 0.9.5 you have a chance of generating the newer(?) block version.

        You should be able to use the 0.9.5 client/wallet to send and receive FTC as long as you DONT mine against that client.

        I hope @Wellenreiter or someone will slap me down with a knowledge bomb if i’m wrong…eeek!

        • FTC Block Explorer + API @ https://fsight.chain.tips
        • FTC Beer Money: 6x4LEQV88zRnBvZoH6ZNK6SeRxx4KiTyJs
        • FTC bech32 address: fc1q4tclm3cv4v86ez6el76ewmharexfapxhek5a03
        • BTC bech32 address: bc1qk8umuccapuafspk9e5szahvp0detafuzugv4ay

        1 Reply Last reply Reply Quote 0
        • lizhi
          lizhi last edited by

          A man mined a block with 0.9, cause a fork. Now our network has 2 different with 0.8.

          one :
          0.8 BASE_MATURITY=100
          0.9 COINBASE_MATURITY=30
          0.11 COINBASE_MATURITY=100

          two:
          powLimit=uint256S(“00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff”)
          not uint256S(“0000003fffffffffffffffffffffffffffffffffffffffffffffffffffffffff”)

          What is COINBASE_MATURITY ?
          Coinbase transaction outputs can only be spent after this number of new blocks (network rule).

          What is powLimit ?
          It is starting difficulty.

          When Core check ProofOfWork, If Target > PowLimit , then check ProofOfWork error.

          ghostlander 1 Reply Last reply Reply Quote 0
          • ghostlander
            ghostlander Regular Member @lizhi last edited by

            @lizhi Coin base maturity must be set to 100 confirmations for compatibility reasons. No need to change it either. Why v0.9 makes use of incorrect value is another question. Yes, it can fork the network.

            The PoW limit is the highest target possible which results in the lowest difficulty possible.

            uint256S(“00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff”) = ~uint256(0) >> 20

            There was a difficulty reset while switching to NeoScrypt.

            uint256S(“0000003fffffffffffffffffffffffffffffffffffffffffffffffffffffffff”) = ~uint256(0) >> 26

            Wellenreiter 1 Reply Last reply Reply Quote 1
            • Wellenreiter
              Wellenreiter Moderators @ghostlander last edited by

              @ghostlander said:

              @lizhi Coin base maturity must be set to 100 confirmations for compatibility reasons. No need to change it either. Why v0.9 makes use of incorrect value is another question. Yes, it can fork the network.

              The PoW limit is the highest target possible which results in the lowest difficulty possible.

              uint256S(“00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff”) = ~uint256(0) >> 20

              There was a difficulty reset while switching to NeoScrypt.

              uint256S(“0000003fffffffffffffffffffffffffffffffffffffffffffffffffffffffff”) = ~uint256(0) >> 26

              I think, the reason for v0.9 using 30 confirmations only is caused by the fact, that the code-base was switched from the Litecoin code to the Bitcoin code as upstream code base and this parameter was not adapted.

              For me the correct solution is to change to 100 confirmations for all versions.
              This means to create a patch for v0.9.x and publish it.

              We also need to test the compatibility of 0.8.7.3, 0.9 and 0.11 in the testnet before implementing anything on the main net.

              Possible testnet setup:

              • one group of mining nodes on 0.8.7.3
              • one group of mining nodes on 0.9.3.1
              • one group of mining nodes on 0.11.x (latest version)

              Then gradually reduce the hashrate from the 0.8.7.3 nodes toward 0.9.3.1 and then to 0.11.x and check, how the testnet behaves.

              I skip 0.9.5 here as I don’t see this version as a production version.

              I think we would need at least 30 (= 3 groups of 10 ) mining nodes with client running, which is easier to get with solo mining rather than pool mining.

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

              AmDD 1 Reply Last reply Reply Quote 1
              • AmDD
                AmDD Regular Member @Wellenreiter last edited by

                @Wellenreiter said:

                @ghostlander said:

                @lizhi Coin base maturity must be set to 100 confirmations for compatibility reasons. No need to change it either. Why v0.9 makes use of incorrect value is another question. Yes, it can fork the network.

                The PoW limit is the highest target possible which results in the lowest difficulty possible.

                uint256S(“00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff”) = ~uint256(0) >> 20

                There was a difficulty reset while switching to NeoScrypt.

                uint256S(“0000003fffffffffffffffffffffffffffffffffffffffffffffffffffffffff”) = ~uint256(0) >> 26

                I think, the reason for v0.9 using 30 confirmations only is caused by the fact, that the code-base was switched from the Litecoin code to the Bitcoin code as upstream code base and this parameter was not adapted.

                For me the correct solution is to change to 100 confirmations for all versions.
                This means to create a patch for v0.9.x and publish it.

                We also need to test the compatibility of 0.8.7.3, 0.9 and 0.11 in the testnet before implementing anything on the main net.

                Possible testnet setup:

                • one group of mining nodes on 0.8.7.3
                • one group of mining nodes on 0.9.3.1
                • one group of mining nodes on 0.11.x (latest version)

                Then gradually reduce the hashrate from the 0.8.7.3 nodes toward 0.9.3.1 and then to 0.11.x and check, how the testnet behaves.

                I skip 0.9.5 here as I don’t see this version as a production version.

                **** I think we would need at least 30 (= 3 groups of 10 ) mining nodes with client running, which is easier to get with solo mining rather than pool mining.


                is solo mining possible? I didnt think it was

                P2Pool Node: http://104.236.34.9:19327/ 0.5% fee

                wrapper 1 Reply Last reply Reply Quote 2
                • wrapper
                  wrapper Moderators @AmDD last edited by wrapper

                  is solo mining possible? I didnt think it was

                  Solo mining is always possible. The only time it can be un -viable is where the number of miners / hash rate >>> hash rate you have. Which is why people form pools, and sometimes you might not have enough hash to earn in a pool.

                  Currently, it should be possible to solo mine FTC with a reasonable home rig (~200 KHash) . You might have to wait a couple of weeks / month to get a block.

                  That based on experience recently with our p2pool. It got split off from other pools, with the fork and thus effectively “solo” mining with 200KHash.

                  It would be interesting to see if anyone tries solo mining…

                  AmDD 1 Reply Last reply Reply Quote 0
                  • AmDD
                    AmDD Regular Member @wrapper last edited by

                    @wrapper said:

                    is solo mining possible? I didnt think it was

                    Solo mining is always possible. The only time it can be un -viable is where the number of miners / hash rate >>> hash rate you have. Which is why people form pools, and sometimes you might not have enough hash to earn in a pool.

                    Currently, it should be possible to solo mine FTC with a reasonable home rig (~200 KHash) . You might have to wait a couple of weeks / month to get a block.

                    That based on experience recently with our p2pool. It got split off from other pools, with the fork and thus effectively “solo” mining with 200KHash.

                    It would be interesting to see if anyone tries solo mining…

                    I understand the risk of solo mining in relation to profitibility. Im asking if its physically possible. My understanding was that Bitcoin and Litecoin both removed the code to allow solo mining, since Feathercoin is a fork of Litecoin and now based on Bitcoin Core I question if the mining code was added back to Feathercoin. Ive also tried to solo mine FTC awhile back and had no luck. There should be a thread on it somewhere here.

                    P2Pool Node: http://104.236.34.9:19327/ 0.5% fee

                    1 Reply Last reply Reply Quote 0
                    • R
                      RIPPEDDRAGON Regular Member last edited by

                      Isn’t solo-mining purely get work based not stratum hence why nsgminer wont work? Do you have to run some sort of stratum to get work proxy?

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

                        @RIPPEDDRAGON

                        It should be possible to simply start feathercoin-qt or feathercoin with -gen option to start solo cpu mining

                        With rpcuser and rpc password set, you also can point a miner to the client in order to do GPU mining.

                        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 1
                        • ghostlander
                          ghostlander Regular Member last edited by

                          Solo mining works through Getwork. It’s broken in SGminer still. NSGminer works fine.

                          1 Reply Last reply Reply Quote 2
                          • wrapper
                            wrapper Moderators last edited by wrapper

                            Fork?
                            Give me Coins on Wong Version AGAIN? - I have resurrected this thread so get help :

                            ---- ACIDDUDE FOUND THIS 2016-06-30 11:38:08

                            CheckForkWarningConditions: Warning: Large valid fork found
                            forking the chain at height 1277149 (df7599227e348c49fadb6812af71aa8daf31ad251e3fa41ff87877f9fb7cc4ec)
                            lasting to height 1277183 (2956a078a7969ba12cbb0dc5abbf86bfec22fe37cadd68ad416ae892708fbb8e).
                            Chain state database corruption likely.

                            There is a technical issue thread to fix it and report back :

                            http://forum.feathercoin.com/topic/8600/fork-warning-large-valid-fork-found-forking-the-chain-at-height-1277149

                            1 Reply Last reply Reply Quote 0
                            • T
                              thebaron last edited by

                              Is BIP65 CheckLockTimeVerify still embedded in FTC? I’m very interested in trading on Blocknet and just want to check that feathercoin doesn’t have anything stopping it from running on the DEX.

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

                                @thebaron said in Feathercoin Fork:

                                CheckLockTimeVerify

                                I think that’s (CheckLockTimeVerify) in 0.11 and we haven’t / reviewed or released that yet.

                                https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki

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