Skip to content

Commit

Permalink
Rekeys feature.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso committed Aug 27, 2024
1 parent b6827e6 commit 91585ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ mod tests {
#[test_case(solana_vote_program::id(), None)]
#[test_case(
solana_sdk::loader_v4::id(),
Some(feature_set::enable_program_runtime_v2_and_loader_v4::id())
Some(feature_set::enable_loader_v4::id())
)]
#[test_case(
solana_zk_token_sdk::zk_token_proof_program::id(),
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/bank/builtins/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ pub static BUILTINS: &[BuiltinPrototype] = &[
testable_prototype!(BuiltinPrototype {
core_bpf_migration_config: None,
name: loader_v4,
enable_feature_id: Some(feature_set::enable_program_runtime_v2_and_loader_v4::id()),
enable_feature_id: Some(feature_set::enable_loader_v4::id()),
program_id: solana_sdk::loader_v4::id(),
entrypoint: solana_loader_v4_program::Entrypoint::vm,
}),
Expand Down
6 changes: 3 additions & 3 deletions sdk/src/feature_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -685,8 +685,8 @@ pub mod remaining_compute_units_syscall_enabled {
solana_sdk::declare_id!("5TuppMutoyzhUSfuYdhgzD47F92GL1g89KpCZQKqedxP");
}

pub mod enable_program_runtime_v2_and_loader_v4 {
solana_sdk::declare_id!("8oBxsYqnCvUTGzgEpxPcnVf7MLbWWPYddE33PftFeBBd");
pub mod enable_loader_v4 {
solana_sdk::declare_id!("8Cb77yHjPWe9wuWUfXeh6iszFGCDGNCoFk3tprViYHNm");
}

pub mod require_rent_exempt_split_destination {
Expand Down Expand Up @@ -1017,7 +1017,7 @@ lazy_static! {
(enable_poseidon_syscall::id(), "Enable Poseidon syscall"),
(timely_vote_credits::id(), "use timeliness of votes in determining credits to award"),
(remaining_compute_units_syscall_enabled::id(), "enable the remaining_compute_units syscall"),
(enable_program_runtime_v2_and_loader_v4::id(), "Enable Program-Runtime-v2 and Loader-v4 #33293"),
(enable_loader_v4::id(), "Enable Loader-v4 SIMD-0167"),
(require_rent_exempt_split_destination::id(), "Require stake split destination account to be rent exempt"),
(better_error_codes_for_tx_lamport_check::id(), "better error codes for tx lamport check #33353"),
(enable_alt_bn128_compression_syscall::id(), "add alt_bn128 compression syscalls"),
Expand Down

0 comments on commit 91585ba

Please sign in to comment.