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

    [Dev] Documenting Feathercoin Specific Software settings - Part 4

    Technical Development
    1
    24
    5754
    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.
    • wrapper
      wrapper Moderators last edited by

      Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

      Add lock/unlock menu : - commit

      https://github.com/FeatherCoin/Feathercoin/commit/6f0ff3bb8b59d5955d1fcb9614ed9259061ca882

      src/qt/walletframe.h

      Update for shapeshift

      +    /** Lock the wallet */
      +    void lockWallet();
      
      1 Reply Last reply Reply Quote 0
      • wrapper
        wrapper Moderators last edited by

        Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

        Add lock/unlock menu : - commit

        https://github.com/FeatherCoin/Feathercoin/commit/6f0ff3bb8b59d5955d1fcb9614ed9259061ca882

        src/qt/walletframe.h

         +    /** Lock the wallet */
         +    void lockWallet();
        
        1 Reply Last reply Reply Quote 0
        • wrapper
          wrapper Moderators last edited by wrapper

          Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

          Add lock/unlock menu : - commit

          https://github.com/FeatherCoin/Feathercoin/commit/6f0ff3bb8b59d5955d1fcb9614ed9259061ca882

          src/qt/walletview.cpp

           + void WalletView::lockWallet()
           + {
           +     if(!walletModel)
           +         return;
           +     // Lock wallet when requested by wallet model
           +     if (walletModel->getEncryptionStatus() == WalletModel::Unlocked)
           +     {
           +         SecureString dummy;
           +         walletModel->setWalletLocked(true, dummy);
           +     }
           + }
           +
          
          1 Reply Last reply Reply Quote 0
          • wrapper
            wrapper Moderators last edited by

            Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

            Add lock/unlock menu : - commit

            https://github.com/FeatherCoin/Feathercoin/commit/6f0ff3bb8b59d5955d1fcb9614ed9259061ca882

            src/qt/walletview.h

             +    /** Lock the wallet */
             +    void lockWallet();
            
            1 Reply Last reply Reply Quote 0
            • First post
              Last post