From 57358d63669925f9f8520aa8c3cfff21d70c2d7c Mon Sep 17 00:00:00 2001 From: rebustron Date: Tue, 11 Feb 2025 13:05:11 +0100 Subject: [PATCH 1/2] typo lib.rs --- transaction-error/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transaction-error/src/lib.rs b/transaction-error/src/lib.rs index 2f5b72b9..4a394f31 100644 --- a/transaction-error/src/lib.rs +++ b/transaction-error/src/lib.rs @@ -124,7 +124,7 @@ pub enum TransactionError { /// LoadedAccountsDataSizeLimit set for transaction must be greater than 0. InvalidLoadedAccountsDataSizeLimit, - /// Sanitized transaction differed before/after feature activiation. Needs to be resanitized. + /// Sanitized transaction differed before/after feature activation. Needs to be resanitized. ResanitizationNeeded, /// Program execution is temporarily restricted on an account. From 5fd3a06f3898be96266ae9c3b55dd06cd98ff41e Mon Sep 17 00:00:00 2001 From: rebustron Date: Tue, 11 Feb 2025 13:05:55 +0100 Subject: [PATCH 2/2] typo abi_example.rs --- frozen-abi/src/abi_example.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frozen-abi/src/abi_example.rs b/frozen-abi/src/abi_example.rs index b77758a3..f7844989 100644 --- a/frozen-abi/src/abi_example.rs +++ b/frozen-abi/src/abi_example.rs @@ -19,7 +19,7 @@ use { // // The requirement of AbiExample impls even applies to those types of `#[serde(skip)]`-ed fields. // That's because the abi digesting needs a properly initialized object to enter into the -// serde::serialize() to begin with, even knowning they aren't used for serialization and thus abi +// serde::serialize() to begin with, even knowing they aren't used for serialization and thus abi // digest. Luckily, `#[serde(skip)]`-ed fields' AbiExample impls can just delegate to T::default(), // exploiting the nature of this artificial impl requirement as an exception from the usual // AbiExample semantics.