diff --git a/sdk/src/ed25519_instruction.rs b/sdk/src/ed25519_instruction.rs index 38218efefe156a..688ef0dade9d39 100644 --- a/sdk/src/ed25519_instruction.rs +++ b/sdk/src/ed25519_instruction.rs @@ -10,7 +10,7 @@ use { ed25519_dalek::{ed25519::signature::Signature, Signer, Verifier}, solana_feature_set::{ed25519_precompile_verify_strict, FeatureSet}, solana_instruction::Instruction, - solana_precompile_error::PrecompileError + solana_precompile_error::PrecompileError, }; pub const PUBKEY_SERIALIZED_SIZE: usize = 32; diff --git a/sdk/src/precompiles.rs b/sdk/src/precompiles.rs index 28508b1f3168fa..4812b81e347717 100644 --- a/sdk/src/precompiles.rs +++ b/sdk/src/precompiles.rs @@ -5,10 +5,8 @@ #[deprecated(since = "2.1.0", note = "Use `solana-precompile-error` crate instead.")] pub use solana_precompile_error::PrecompileError; use { - lazy_static::lazy_static, - solana_feature_set::FeatureSet, - solana_program::instruction::CompiledInstruction, - solana_pubkey::Pubkey, + lazy_static::lazy_static, solana_feature_set::FeatureSet, + solana_program::instruction::CompiledInstruction, solana_pubkey::Pubkey, }; /// All precompiled programs must implement the `Verify` function diff --git a/sdk/src/secp256k1_instruction.rs b/sdk/src/secp256k1_instruction.rs index 63481a10410d7b..ee5751b7cf8ef9 100644 --- a/sdk/src/secp256k1_instruction.rs +++ b/sdk/src/secp256k1_instruction.rs @@ -792,7 +792,7 @@ use { serde_derive::{Deserialize, Serialize}, solana_feature_set::FeatureSet, solana_instruction::Instruction, - solana_precompile_error::PrecompileError + solana_precompile_error::PrecompileError, }; pub const HASHED_PUBKEY_SERIALIZED_SIZE: usize = 20;