Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 44e2abe

Browse files
committed
import elgamalciphertext_fromstr
1 parent f44f31d commit 44e2abe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

token/program-2022/src/extension/confidential_mint_burn/instruction.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#[cfg(feature = "serde-traits")]
22
use {
3-
crate::serialization::{aeciphertext_fromstr, elgamalpubkey_fromstr},
3+
crate::serialization::{
4+
aeciphertext_fromstr, elgamalciphertext_fromstr, elgamalpubkey_fromstr,
5+
},
46
serde::{Deserialize, Serialize},
57
};
68
use {

token/program-2022/src/extension/confidential_transfer/instruction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pub use solana_zk_sdk::zk_elgamal_proof_program::{
33
};
44
#[cfg(feature = "serde-traits")]
55
use {
6-
crate::serialization::aeciphertext_fromstr,
6+
crate::serialization::{aeciphertext_fromstr, elgamalciphertext_fromstr},
77
serde::{Deserialize, Serialize},
88
};
99
use {

0 commit comments

Comments
 (0)