Skip to content

Commit

Permalink
correct double negation (#27240)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardkulms authored Aug 19, 2022
1 parent 7573000 commit 1794455
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/transaction/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
}
Expand Down

0 comments on commit 1794455

Please sign in to comment.