@@ -77,19 +77,6 @@ pub static BUILTINS: &[BuiltinPrototype] = &[
7777 program_id : solana_stake_program:: id ( ) ,
7878 entrypoint : solana_stake_program:: stake_instruction:: Entrypoint :: vm,
7979 } ,
80- BuiltinPrototype {
81- core_bpf_migration_config : Some ( CoreBpfMigrationConfig {
82- source_buffer_address : buffer_accounts:: config_program:: id ( ) ,
83- upgrade_authority_address : None ,
84- feature_id : agave_feature_set:: migrate_config_program_to_core_bpf:: id ( ) ,
85- migration_target : CoreBpfMigrationTargetType :: Builtin ,
86- datapoint_name : "migrate_builtin_to_core_bpf_config_program" ,
87- } ) ,
88- name : "config_program" ,
89- enable_feature_id : None ,
90- program_id : solana_config_program:: id ( ) ,
91- entrypoint : solana_config_program:: config_processor:: Entrypoint :: vm,
92- } ,
9380 testable_prototype ! ( BuiltinPrototype {
9481 core_bpf_migration_config: None ,
9582 name: solana_bpf_loader_deprecated_program,
@@ -161,9 +148,6 @@ mod buffer_accounts {
161148 pub mod address_lookup_table_program {
162149 solana_pubkey:: declare_id!( "AhXWrD9BBUYcKjtpA3zuiiZG4ysbo6C6wjHo1QhERk6A" ) ;
163150 }
164- pub mod config_program {
165- solana_pubkey:: declare_id!( "BuafH9fBv62u6XjzrzS4ZjAE8963ejqF5rt1f8Uga4Q3" ) ;
166- }
167151 pub mod stake_program {
168152 solana_pubkey:: declare_id!( "8t3vv6v99tQA6Gp7fVdsBH66hQMaswH5qsJVqJqo8xvG" ) ;
169153 }
@@ -368,36 +352,34 @@ mod tests {
368352 ) ;
369353 // Stake has a live migration config, so it has no test-only configs
370354 // to test here.
371- // Config has a live migration config, so it has no test-only configs
372- // to test here.
373355 assert_eq ! (
374- & super :: BUILTINS [ 4 ] . core_bpf_migration_config,
356+ & super :: BUILTINS [ 3 ] . core_bpf_migration_config,
375357 & Some ( super :: test_only:: solana_bpf_loader_deprecated_program:: CONFIG )
376358 ) ;
377359 assert_eq ! (
378- & super :: BUILTINS [ 5 ] . core_bpf_migration_config,
360+ & super :: BUILTINS [ 4 ] . core_bpf_migration_config,
379361 & Some ( super :: test_only:: solana_bpf_loader_program:: CONFIG )
380362 ) ;
381363 assert_eq ! (
382- & super :: BUILTINS [ 6 ] . core_bpf_migration_config,
364+ & super :: BUILTINS [ 5 ] . core_bpf_migration_config,
383365 & Some ( super :: test_only:: solana_bpf_loader_upgradeable_program:: CONFIG )
384366 ) ;
385367 assert_eq ! (
386- & super :: BUILTINS [ 7 ] . core_bpf_migration_config,
368+ & super :: BUILTINS [ 6 ] . core_bpf_migration_config,
387369 & Some ( super :: test_only:: compute_budget_program:: CONFIG )
388370 ) ;
389371 // Address Lookup Table has a live migration config, so it has no
390372 // test-only configs to test here.
391373 assert_eq ! (
392- & super :: BUILTINS [ 9 ] . core_bpf_migration_config,
374+ & super :: BUILTINS [ 8 ] . core_bpf_migration_config,
393375 & Some ( super :: test_only:: zk_token_proof_program:: CONFIG )
394376 ) ;
395377 assert_eq ! (
396- & super :: BUILTINS [ 10 ] . core_bpf_migration_config,
378+ & super :: BUILTINS [ 9 ] . core_bpf_migration_config,
397379 & Some ( super :: test_only:: loader_v4:: CONFIG )
398380 ) ;
399381 assert_eq ! (
400- & super :: BUILTINS [ 11 ] . core_bpf_migration_config,
382+ & super :: BUILTINS [ 10 ] . core_bpf_migration_config,
401383 & Some ( super :: test_only:: zk_elgamal_proof_program:: CONFIG )
402384 ) ;
403385 }
0 commit comments