From 6e819e61adeb83825f1566899d0a94d316cc4082 Mon Sep 17 00:00:00 2001 From: Leonard Kulms Date: Thu, 18 Aug 2022 21:04:13 +0200 Subject: [PATCH] correct double negation --- 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 2fe4e0e3756adf..e061b3ffebf951 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 }, }