diff --git a/ui/app/AppLayouts/Wallet/WalletUtils.qml b/ui/app/AppLayouts/Wallet/WalletUtils.qml index e933f395fe..d8c8460a56 100644 --- a/ui/app/AppLayouts/Wallet/WalletUtils.qml +++ b/ui/app/AppLayouts/Wallet/WalletUtils.qml @@ -212,6 +212,8 @@ QtObject { return qsTr("not enough ETH") case Constants.routerErrorCodes.router.errLowAmountInForHopBridge: return qsTr("amount in too low") + case Constants.routerErrorCodes.router.errNoPositiveBalance: + return qsTr("no positive balance") default: return qsTr("unknown processor error") } @@ -365,6 +367,8 @@ QtObject { } case Constants.routerErrorCodes.router.errLowAmountInForHopBridge: return qsTr("bonder fee greater than estimated received, a higher amount is needed to cover fees") + case Constants.routerErrorCodes.router.errNoPositiveBalance: + return qsTr("no positive balance for your account across chains") default: return "" } diff --git a/ui/imports/utils/Constants.qml b/ui/imports/utils/Constants.qml index 4c3cc5623b..d2226d7311 100644 --- a/ui/imports/utils/Constants.qml +++ b/ui/imports/utils/Constants.qml @@ -1131,6 +1131,7 @@ QtObject { readonly property string errCannotCheckReceiverBalance : "WR-024" readonly property string errCannotCheckLockedAmounts : "WR-025" readonly property string errLowAmountInForHopBridge : "WR-026" + readonly property string errNoPositiveBalance : "WR-027" } } diff --git a/vendor/status-go b/vendor/status-go index 1418d40a63..9b9a91f654 160000 --- a/vendor/status-go +++ b/vendor/status-go @@ -1 +1 @@ -Subproject commit 1418d40a6360b41f25edb4d9fb729bb048949f30 +Subproject commit 9b9a91f654dbfb9a0e4b46964ed766c6bbbe45d0