Skip to content

Commit

Permalink
Ignore no tx keys found error
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantinullrich committed Nov 27, 2024
1 parent 3b83b85 commit 78f1d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cw_monero/lib/api/transaction_history.dart
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ String? commitTransaction({required monero.PendingTransaction transactionPointer
})();

}
if (error != null) {
if (error != null && error != "no tx keys found for this txid") {
throw CreationTransactionException(message: error);
}
if (useUR) {
Expand Down

0 comments on commit 78f1d65

Please sign in to comment.