| 328 | } |
| 329 | |
| 330 | void TransactionView::changedAmount() |
| 331 | { |
| 332 | if(!transactionProxyModel) |
| 333 | return; |
| 334 | CAmount amount_parsed = 0; |
| 335 | if (BitcoinUnits::parse(model->getOptionsModel()->getDisplayUnit(), amountWidget->text(), &amount_parsed)) { |
| 336 | transactionProxyModel->setMinAmount(amount_parsed); |
| 337 | } |
| 338 | else |
| 339 | { |
| 340 | transactionProxyModel->setMinAmount(0); |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | void TransactionView::exportClicked() |
| 345 | { |
nothing calls this directly
no test coverage detected