correct double negation (#27240)

This commit is contained in:
leonardkulms 2022-08-19 12:18:19 +02:00 committed by GitHub
parent 7573000d87
commit 1794455766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 },
}