We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b5d871 commit f949b8eCopy full SHA for f949b8e
Adamant/Modules/Wallets/Bitcoin/BtcTransferViewController.swift
@@ -39,18 +39,18 @@ final class BtcTransferViewController: TransferViewControllerBase {
39
40
Task {
41
do {
42
+ if await !doesNotContainSendingTx() {
43
+ presentSendingError()
44
+ return
45
+ }
46
+
47
let transaction = try await service.createTransaction(
48
recipient: recipient,
49
amount: amount,
50
fee: transactionFee,
51
comment: nil
52
)
53
- if await !doesNotContainSendingTx() {
- presentSendingError()
- return
- }
-
54
// Send adm report
55
if let reportRecipient = admReportRecipient,
56
let hash = transaction.txHash
0 commit comments