| 186 | } |
| 187 | |
| 188 | SendAssetsRecipient SendCoinsEntry::getValue() |
| 189 | { |
| 190 | recipient.address = ui->payTo->text(); |
| 191 | recipient.label = ui->addAsLabel->text(); |
| 192 | std::tie(recipient.asset, recipient.asset_amount) = ui->payAmount->fullValue(); |
| 193 | recipient.message = ui->messageTextLabel->text(); |
| 194 | recipient.fSubtractFeeFromAmount = (ui->checkboxSubtractFeeFromAmount->checkState() == Qt::Checked); |
| 195 | |
| 196 | return recipient; |
| 197 | } |
| 198 | |
| 199 | QWidget *SendCoinsEntry::setupTabChain(QWidget *prev) |
| 200 | { |
no test coverage detected