diff --git a/core/primitives/src/errors.rs b/core/primitives/src/errors.rs index 40a1112f5f4..c3445e634b4 100644 --- a/core/primitives/src/errors.rs +++ b/core/primitives/src/errors.rs @@ -422,7 +422,7 @@ impl Display for InvalidTxError { signer_id, balance, cost ), InvalidTxError::LackBalanceForState { signer_id, amount } => { - write!(f, "Failed to execute, because the account {:?} wouldn't have enough balance to cover storage, required to have {}", signer_id, amount) + write!(f, "Failed to execute, because the account {:?} wouldn't have enough balance to cover storage, required to have {} yoctoNEAR more", signer_id, amount) } InvalidTxError::CostOverflow => { write!(f, "Transaction gas or balance cost is too high") @@ -635,7 +635,7 @@ impl Display for ActionErrorKind { ), ActionErrorKind::LackBalanceForState { account_id, amount } => write!( f, - "The account {} wouldn't have enough balance to cover storage, required to have {}", + "The account {} wouldn't have enough balance to cover storage, required to have {} yoctoNEAR more", account_id, amount ), ActionErrorKind::TriesToUnstake { account_id } => {