mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
fix: Bug when building Monero.Com resulting from solana exceptions situated in send viewmodel from cw_solana package (#1893)
This commit is contained in:
parent
301cb3b7e0
commit
a6f61c595f
3 changed files with 22 additions and 13 deletions
|
@ -27,7 +27,7 @@ class TransactionCommitFailed implements Exception {
|
|||
|
||||
@override
|
||||
String toString() {
|
||||
return errorMessage??"unknown error";
|
||||
return errorMessage ?? "unknown error";
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -44,3 +44,11 @@ class TransactionCommitFailedBIP68Final implements Exception {}
|
|||
class TransactionCommitFailedLessThanMin implements Exception {}
|
||||
|
||||
class TransactionInputNotSupported implements Exception {}
|
||||
|
||||
class SignNativeTokenTransactionRentException implements Exception {}
|
||||
|
||||
class CreateAssociatedTokenAccountException implements Exception {}
|
||||
|
||||
class SignSPLTokenTransactionRentException implements Exception {}
|
||||
|
||||
class NoAssociatedTokenAccountException implements Exception {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue