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

    [Dev] Feathercoin 0.9.6.2 * Maintenance fix, build & upgrade issues notes.

    Technical Development
    8
    153
    74643
    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.
    • AcidD
      AcidD Moderators @wrapper last edited by AcidD

      @wrapper said in [Dev] Feathercoin 0.9.6.2 * Maintenance fix & Issues notes for 0.11.2:

      After adding missing files / updating configure.ac :

      src/qt/qrcodedialog.h and qrcodedialog.cpp

      Compile fails at :

      In file included from qt/addressbookpage.cpp:32:0:
      qt/qrcodedialog.h:22:9: error: expected ‘:’ before ‘slots’
      private slots:

      https://stackoverflow.com/questions/20185423/qt-cmake-missing-before-identifier-slots

      Tried adding missing file : feathercoin.qrc

      Created list of files Not in version 0.11.2 but in version 0.9.6.2 in ~/projects/Feathercoin :

      diff -r ~/projects/Feathercoin ~/Feathercoin | grep ~/projects/Feathercoin > difference2.txt

      To fix this error:

      In file included from qt/addressbookpage.cpp:32:0:
      qt/qrcodedialog.h:22:9: error: expected ‘:’ before ‘slots’
      private slots:

      This was mine:

      qt/qrcodedialog.h:22:9: error: expected ‘:’ before ‘slots’
       private slots:
               ^
      qt/qrcodedialog.h:22:9: error: ‘slots’ does not name a type
      

      Open
      qt/qrcodedialog.h:

      change line 22 from

       private slots:
      

      to

      private Q_SLOTS:
      

      https://forum.qt.io/topic/17952/slot-declaration-rare-problem-to-resolve-solved/2

      • 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
      • AcidD
        AcidD Moderators last edited by

        0.11.2 build error

          CXX      qt/qt_libbitcoinqt_a-qrcodedialog.o
        qt/qrcodedialog.cpp: In member function ‘QString QRCodeDialog::getURI()’:
        qt/qrcodedialog.cpp:98:67: error: ‘FTC’ is not a member of ‘BitcoinUnits’
                     ret += QString("?amount=%1").arg(BitcoinUnits::format(BitcoinUnits::FTC, ui->lnReqAmount->value()));
                                                                           ^
        Makefile:5151: recipe for target 'qt/qt_libbitcoinqt_a-qrcodedialog.o' failed
        make[2]: *** [qt/qt_libbitcoinqt_a-qrcodedialog.o] Error 1
        
        

        go check src/qt/bitcoinunits.cpp and .h

        easy fix

        add relevant FTC eqivilants into bitcoinunits.h

            enum Unit
            {
                MBTC,
                kBTC,
                BTC,
                mBTC,
                uBTC, 
                MFTC,
                kFTC,
                FTC,
                mFTC,
                uFTC
            };
        

        proper fix…edit both files …requires further understanding of the code for me.

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

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

          @AcidD we should create and use a feathercoinunits.cpp/.h and use that instead

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

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

            @Wellenreiter said in [Dev] Feathercoin 0.9.6.2 * Maintenance fix & Issues notes for 0.11.2:

            @AcidD we should create and use a feathercoinunits.cpp/.h and use that instead

            I agree and this is the same thing we need to look at for other changes during the review whilst moving to head.
            The main reason is to make future merges less problematic.

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

              Can someone fork Bitcoin into the Feathercoin Github ?

              @Wrapper you made a fair point a while back somewhere…if we properly fork from Bitcoin head and then do our commits we can easily pull in their fixes as well ?

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

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

                @AcidD Yes, thats the job I call “Going to Head” !

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

                  Getting this message opening the debug.log in 0.11.2

                  The file /home/tony/.feathercoin/debug.log was opened with UTF-8 encoding but contained invalid characters.
                  It is set to read-only mode, as saving might destroy its content.
                  Either reopen the file with the correct encoding chosen or enable the read-write mode again in the tools menu to be able to edit it.

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

                    @wrapper said in [Dev] Feathercoin 0.9.6.2 * Maintenance fix & Issues notes for 0.11.2:

                    Getting this message opening the debug.log in 0.11.2

                    The file /home/tony/.feathercoin/debug.log was opened with UTF-8 encoding but contained invalid characters.
                    It is set to read-only mode, as saving might destroy its content.
                    Either reopen the file with the correct encoding chosen or enable the read-write mode again in the tools menu to be able to edit it.

                    When writing to the Debug log, does 0.11.2 leave comments that are written by @lizhi and therefore uses a different character encoding?

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

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

                      https://bter.com/trade/ftc_btc

                      Is running Feathercoin 0.9.3.2

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

                        @AcidD said in [Dev] Feathercoin 0.9.6.2 * Maintenance fix & Issues notes for 0.11.2:

                        When writing to the Debug log, does 0.11.2 leave comments that are written by @lizhi and therefore uses a different character encoding?

                        Server Hosted in Luxemberg + FTC = BTER

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

                          Issue Notes :

                          Whilst syncing a (fresh blockchain database/wallet) Feathercoin 0.11.2-dev , mouse over the exclamation mark next to Balances . says Bitcoin

                          QRCodes did not work - need review after merge complete

                          Check : Transaction fee set to 0.00001 FTC/kB

                          Sign message - tool tip on Advanced menu option - Verify message sign message tab says bitcoin

                          Verify message - tool tip on Advanced menu option - Verify message - Verify message tab says bitcoin

                          Advanced / Options / Wallet : Check default coin control settings are correct

                          There are quite a few changes made to the wallet structure, the standard bitcoin connection animation looks Ok. opennames is missing.

                          @AFB helped to do some fiddling to bring in all the improvements we did into 0.11.2 , possibly make a couple more icons / update some bad new forms.

                          There is another test (that would help us move to head) - Fork Bitcoin, checkout 0.11 last version - merge ftc 0.11.2

                          Update autoconfig.sh to test for zxing Directory e.g. :
                          if [ ! -d “$DIRECTORY” ]; then
                          # Control will enter here if $DIRECTORY doesn’t exist.
                          fi

                          Update Re-Indexing message to be more friendly / informative? (when you upgrade)

                          Why do we have uFTC and mFTC surely DecaFTC is more logical?? (needs review)

                          Test and document Smart contracts.

                          Smart contracts is just a form, review and remove, smart contract form.

                          SX search for stealth coins not included.

                          find not utf-8 characters grep -axv ‘.*’ main.cpp

                          propose launch option shrink debug file :

                          Add -shrinkdebuglog to the options you use to start feathercoin, or add shrinkdebuglog=1 to your feathercoin.conf. Every startup, if the log is larger than 1MB, it will shrink it to 200KB.

                          wallet.cpp change control :
                          // TODO: fix handling of ‘change’ outputs. The assumption is that any
                          // payment to a script that is ours, but is not in the address book
                          // is change. That assumption is likely to break when we implement multisignature
                          // wallets that return change back into a multi-signature-protected address;
                          // a better way of identifying which outputs are ‘the send’ and which are
                          // ‘the change’ will need to be implemented (maybe extend CWalletTx to remember
                          // which output, if any, was change).

                          Fri, 12 September 2014 16:29:30 -0400 build date incorrect, debug information @wellenreiter

                          Add these dependencies to FTC unix build docs :
                          libevent-2.0-5 libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5 libevent-pthreads-2.0-5

                          LogPrintf(" (no) space error(s)

                          Enter multisync, new address, press ok with no address. – Incorrect error message.
                          The entered address “” is not a valid Bitcoin address.

                          Multisig page, - verify message button - not connected to anything …

                          Update the openSSL version used / review : OpenSSL 1.0.2g 1 Mar 2016

                          Re-Integrate updated Documents from 0.9.6.2

                          Review MAN pages - copied in from 0.9.6.1 because 0.11.2 MANs were deleted. need review against Bitcoin 0.11.1

                          src/qt/forms/debugdialog.ui - Reused form SX form and menu options need reapplying.

                          feathercoin.qrc has not been implemented in 0.11 - being worked on as part of merge

                          Icons are missing, test icons - being tested / brought in as part of merge

                          https://github.com/litecoin-project/litecoin/pull/362 SSE2 Litecoin enhancement.
                          https://uk.mathworks.com/matlabcentral/answers/93455-what-is-the-sse2-instruction-set-how-can-i-check-to-see-if-my-processor-supports-it?requestedDomain=www.mathworks.com

                          ACP is not working in 0.11

                          openssl version and future use review :
                          https://github.com/peercoin/peercoin/commit/3320650372750068dff45193603d17998a975117

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

                            @wrapper we should group these notes and create issues directly on github.
                            Otherwise it is duplicated work

                            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
                            • wrapper
                              wrapper Moderators last edited by wrapper

                              I agree, I’ll move them to issues, these are notes while I investigate.

                              I’ve also created a pull list on Github so we can discuse which and how we pull the missing commits from 0.9.6.2 and, opennames. We can use the experience to to pull in further changes from head.

                              https://github.com/FeatherCoin/Feathercoin/pull/201

                              The pull can be used to identify which don’t need or need more icons etc as we agreed, the project will be used to document pulling them in.

                              https://github.com/FeatherCoin/Feathercoin/projects/1

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

                                Need to use cherry pick and meld.

                                Try git imerge a try: that will apply your commits one by one, giving you the chance to do a rebase incrementally (meaning you can start a rebase, interrupt it, resume it later!).

                                You can see here a comparison between Incremental merge vs. direct merge vs. rebase :

                                http://softwareswirl.blogspot.co.uk/2013/05/incremental-merge-vs-direct-merge-vs.html

                                https://stackoverflow.com/questions/18162930/how-can-i-find-out-which-git-commits-cause-conflicts

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

                                  Testing 0.11.2 re-indexing database after it was viewed by 0.9.6.1

                                  Crashed twice with : /feathercoin-qt Segmentation fault

                                  seems to have carried on after restart. tbc

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

                                    @wrapper check the build-aux/m4/ax_boost-base for the version.
                                    it is 1.58 in bitcoin code, 1.54 should be ok, too, but I’ve set it to >1.20 to support older OS. We may have to increase that back to >= 1.54

                                    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
                                    • wrapper
                                      wrapper Moderators last edited by

                                      I’m setting up a test environment. I’ll repeat the test (viewing 0.11 database with 0.9.6.2) after I’ve resynced and, this time, saved uncorrupted / synced 0.11.2 database

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

                                        Merging commits from 0.9.6.2 to 0.11.2 procedure

                                        Install a mergetool. On Linux, meld:

                                        sudo apt-get install meld
                                        

                                        Configure your mergetool:

                                        git config --global merge.tool meld
                                        

                                        Then, iterate in the following way:

                                        git cherry-pick ....
                                        git mergetool
                                        git cherry-pick --continue
                                        
                                        1 Reply Last reply Reply Quote 0
                                        • wrapper
                                          wrapper Moderators last edited by wrapper

                                          First 0.9.6.2 mergeTest cherry pick commit :

                                          https://github.com/FeatherCoin/Feathercoin/pull/201/commits/0ba808af8a10c8231490088932baa2d6ae0c7106
                                          Added man pages for feathercoin, modified icons

                                          commit 0ba808af8a10c8231490088932baa2d6ae0c7106 @wellenreiter01

                                          wellenreiter01 committed on 1 Nov 2015

                                          git cherry-pick 0ba808af8a10c8231490088932baa2d6ae0c7106
                                          
                                            error: cherry-pick is not possible because you have unmerged files.
                                            hint: Fix them up in the work tree, and then use 'git add/rm <file>'
                                            hint: as appropriate to mark resolution and make a commit.
                                            fatal: cherry-pick failed    
                                          
                                          
                                          git mergetool
                                          Merging:
                                          contrib/debian/manpages/feathercoin.conf.5
                                          contrib/debian/manpages/feathercoind.1
                                          contrib/debian/manpages/feathercoin-qt.1
                                          
                                          Deleted merge conflict for 'contrib/debian/manpages/feathercoin.conf.5':
                                            {local}: deleted
                                            {remote}: created file
                                          Use (c)reated or (d)eleted file, or (a)bort?
                                          

                                          Note
                                          Test - Create © all new MAN files. were MAN pages moved in from Bitcoin 0.11? and then FTCed? should still work.
                                          Are there any other references / links to the original MAN names?

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

                                            2. 0.9.6.2 mergeTest cherry pick commit :

                                            changed paperwallet template and copyright strings

                                            commit 07525719698e379f2c721e8e6ffdc6a08468c843 @wellenreiter01

                                            wellenreiter01 committed on 9 Nov 2015

                                            Contains a number of copyright changes - not need. @Wellenreiter needs to check, wither rest are still needed. The paper wallet image may be, and was added in test.

                                            src/m4/bitcoin_find_bdb48.m4 ---- updated for test
                                            src/m4/bitcoin_find_bdb51.m4 ---- updated for test

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