diff --git a/src/views/forms/AccountManagementForms/DepositForm.tsx b/src/views/forms/AccountManagementForms/DepositForm.tsx index 3089572..f2074d5 100644 --- a/src/views/forms/AccountManagementForms/DepositForm.tsx +++ b/src/views/forms/AccountManagementForms/DepositForm.tsx @@ -236,7 +236,7 @@ export const DepositForm = ({ onDeposit, onError }: DepositFormProps) => { } if (isCctp && !abacusStateManager.chainTransactions.isNobleClientConnected) { - throw new Error('Noble client unable to initialize'); + throw new Error('Noble RPC endpoint unaccessible'); } setIsLoading(true); diff --git a/src/views/forms/AccountManagementForms/WithdrawForm.tsx b/src/views/forms/AccountManagementForms/WithdrawForm.tsx index a26a2cf..fb2410a 100644 --- a/src/views/forms/AccountManagementForms/WithdrawForm.tsx +++ b/src/views/forms/AccountManagementForms/WithdrawForm.tsx @@ -149,7 +149,7 @@ export const WithdrawForm = () => { } if (isCctp && !abacusStateManager.chainTransactions.isNobleClientConnected) { - throw new Error('Noble client unable to initialize'); + throw new Error('Noble RPC endpoint unaccessible'); } setIsLoading(true);