| 336 | } |
| 337 | |
| 338 | void TransactionView::changedAmount() |
| 339 | { |
| 340 | if(!transactionProxyModel) |
| 341 | return; |
| 342 | CAmount amount_parsed = 0; |
| 343 | if (BitcoinUnits::parse(model->getOptionsModel()->getDisplayUnit(), amountWidget->text(), &amount_parsed)) { |
| 344 | transactionProxyModel->setMinAmount(amount_parsed); |
| 345 | } |
| 346 | else |
| 347 | { |
| 348 | transactionProxyModel->setMinAmount(0); |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | void TransactionView::exportClicked() |
| 353 | { |
nothing calls this directly
no test coverage detected