Compare commits

..

2 commits
v5.1.0 ... main

Author SHA1 Message Date
OmarHatem
7c6f73ddd4 clarify support email in tx commit failed error [skip ci] 2025-06-29 12:05:08 +03:00
OmarHatem
0eec2f52b8 change nano default node [skip ci] 2025-06-29 09:41:46 +03:00
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ const havenDefaultNodeUri = 'nodes.havenprotocol.org:443';
const ethereumDefaultNodeUri = 'ethereum-rpc.publicnode.com';
const polygonDefaultNodeUri = 'polygon-bor-rpc.publicnode.com';
const cakeWalletBitcoinCashDefaultNodeUri = 'bitcoincash.stackwallet.com:50002';
const nanoDefaultNodeUri = 'nano.nownodes.io';
const nanoDefaultNodeUri = 'rpc.nano.to';
const nanoDefaultPowNodeUri = 'rpc.nano.to';
const solanaDefaultNodeUri = 'solana-mainnet.core.chainstack.com';
const tronDefaultNodeUri = 'api.trongrid.io';

View file

@ -846,7 +846,7 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
if (error.errorMessage != null && error.errorMessage!.contains("no peers replied")) {
return S.current.tx_commit_failed_no_peers;
}
return "${S.current.tx_commit_failed}${error.errorMessage != null ? "\n\n${error.errorMessage}" : ""}";
return "${S.current.tx_commit_failed}\nsupport@cakewallet.com${error.errorMessage != null ? "\n\n${error.errorMessage}" : ""}";
}
if (error is TransactionCommitFailedDustChange) {
return S.current.tx_rejected_dust_change;