Skip to content

Commit

Permalink
update elgamal_program to zk_elgamal_proof_program
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Jun 18, 2024
1 parent 694074f commit 831879d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ mod tests {
Some(feature_set::zk_token_sdk_enabled::id())
)]
#[test_case(
solana_zk_sdk::elgamal_program::id(),
solana_zk_sdk::zk_elgamal_proof_program::id(),
Some(feature_set::zk_elgamal_proof_program_enabled::id())
)]
fn test_target_program_builtin(program_address: Pubkey, activation_feature: Option<Pubkey>) {
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 @@ -125,7 +125,7 @@ pub static BUILTINS: &[BuiltinPrototype] = &[
core_bpf_migration_config: None,
name: zk_elgamal_proof_program,
enable_feature_id: Some(feature_set::zk_elgamal_proof_program_enabled::id()),
program_id: solana_zk_sdk::elgamal_program::id(),
program_id: solana_zk_sdk::zk_elgamal_proof_program::id(),
entrypoint: solana_zk_elgamal_proof_program::Entrypoint::vm,
}),
];
Expand Down

0 comments on commit 831879d

Please sign in to comment.