shows count of locked unspent outputs
| 372 | |
| 373 | // shows count of locked unspent outputs |
| 374 | void CoinControlDialog::updateLabelLocked() |
| 375 | { |
| 376 | std::vector<COutPoint> vOutpts; |
| 377 | model->wallet().listLockedCoins(vOutpts); |
| 378 | if (vOutpts.size() > 0) |
| 379 | { |
| 380 | ui->labelLocked->setText(tr("(%1 locked)").arg(vOutpts.size())); |
| 381 | ui->labelLocked->setVisible(true); |
| 382 | } |
| 383 | else ui->labelLocked->setVisible(false); |
| 384 | } |
| 385 | |
| 386 | void CoinControlDialog::updateLabels(CCoinControl& m_coin_control, WalletModel *model, QDialog* dialog) |
| 387 | { |
nothing calls this directly
no test coverage detected