Skip to content

Commit

Permalink
improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Moliholy committed Mar 25, 2024
1 parent b55c22e commit 2a028cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-signer/src/PaymentInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function PaymentInfo ({ accountId, className = '', extrinsic, isHeader }: Props)
<MarkWarning content={t('The account does not have enough free funds (excluding locked/bonded/reserved) available to cover the transaction fees without dropping the balance below the account existential amount.')} />
)}
{isDryRunError && (
<MarkError content={t('The transaction would not be successfully executed')} />
<MarkError content={t('The transaction did not pass a dry run and would likely not be successfully executed')} />
)}
</>
);
Expand Down

0 comments on commit 2a028cf

Please sign in to comment.