Skip to content

Commit

Permalink
don't return error string
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Nov 26, 2024
1 parent 83c8569 commit 41c5284
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 @@ -17,7 +17,7 @@ String getTxKey(String txId) {
final status = monero.Wallet_status(wptr!);
if (status != 0) {
final error = monero.Wallet_errorString(wptr!);
return txId+"_"+error;
return "";
}
return txKey;
}
Expand Down

0 comments on commit 41c5284

Please sign in to comment.