| 1321 | } |
| 1322 | |
| 1323 | void BitcoinGUI::updateWalletStatus() |
| 1324 | { |
| 1325 | assert(walletFrame); |
| 1326 | |
| 1327 | WalletView * const walletView = walletFrame->currentWalletView(); |
| 1328 | if (!walletView) { |
| 1329 | return; |
| 1330 | } |
| 1331 | WalletModel * const walletModel = walletView->getWalletModel(); |
| 1332 | setEncryptionStatus(walletModel->getEncryptionStatus()); |
| 1333 | setHDStatus(walletModel->wallet().privateKeysDisabled(), walletModel->wallet().hdEnabled()); |
| 1334 | } |
| 1335 | #endif // ENABLE_WALLET |
| 1336 | |
| 1337 | void BitcoinGUI::updateProxyIcon() |
nothing calls this directly
no test coverage detected