* Fix ed25519 builtin program handling (#23182)
* Fix ed25519 builtin program handling
* Fix tests
* Add integration tests for processing transactions with ed25519 ixs
* Fix another test
* fix formatting
(cherry picked from commit 813725dfec
)
* fix tests
Co-authored-by: Justin Starry <justin@solana.com>
Co-authored-by: Jack May <jack@solana.com>
This commit is contained in:
@ -5,9 +5,7 @@
|
||||
use {
|
||||
crate::{
|
||||
decode_error::DecodeError,
|
||||
feature_set::{
|
||||
ed25519_program_enabled, prevent_calling_precompiles_as_programs, FeatureSet,
|
||||
},
|
||||
feature_set::{prevent_calling_precompiles_as_programs, FeatureSet},
|
||||
instruction::CompiledInstruction,
|
||||
pubkey::Pubkey,
|
||||
},
|
||||
@ -88,7 +86,7 @@ lazy_static! {
|
||||
),
|
||||
Precompile::new(
|
||||
crate::ed25519_program::id(),
|
||||
Some(ed25519_program_enabled::id()),
|
||||
Some(prevent_calling_precompiles_as_programs::id()),
|
||||
crate::ed25519_instruction::verify,
|
||||
),
|
||||
];
|
||||
|
Reference in New Issue
Block a user