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.
    • 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