[Dev] Documenting Feathercoin Specific Software settings - Part 4
-
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();
-
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();
-
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); + } + } +
-
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();