From 179445576680a46303e0d63b9d9a78d50123474e Mon Sep 17 00:00:00 2001 From: leonardkulms <42893075+leonardkulms@users.noreply.github.com> Date: Fri, 19 Aug 2022 12:18:19 +0200 Subject: [PATCH] correct double negation (#27240) --- sdk/src/transaction/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/src/transaction/error.rs b/sdk/src/transaction/error.rs index 2fe4e0e375..e061b3ffeb 100644 --- a/sdk/src/transaction/error.rs +++ b/sdk/src/transaction/error.rs @@ -142,9 +142,9 @@ pub enum TransactionError { #[error("Transaction contains a duplicate instruction ({0}) that is not allowed")] DuplicateInstruction(u8), - /// Transaction results in an account without insufficient funds for rent + /// Transaction results in an account with insufficient funds for rent #[error( - "Transaction results in an account ({account_index}) without insufficient funds for rent" + "Transaction results in an account ({account_index}) with insufficient funds for rent" )] InsufficientFundsForRent { account_index: u8 }, }