Skip to content

Commit

Permalink
post-rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Nov 5, 2024
1 parent 1c75569 commit 9551211
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions zk-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ solana-pubkey = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
solana-keypair = { workspace = true }
tiny-bip39 = { workspace = true }

[target.'cfg(not(target_os = "solana"))'.dependencies]
Expand Down
5 changes: 2 additions & 3 deletions zk-sdk/src/encryption/auth_encryption.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,8 @@ impl fmt::Display for AeCiphertext {
#[cfg(test)]
mod tests {
use {
super::*,
solana_pubkey::Pubkey,
solana_signer::{keypair::Keypair, null_signer::NullSigner},
super::*, solana_keypair::Keypair, solana_pubkey::Pubkey,
solana_signer::null_signer::NullSigner,
};

#[test]
Expand Down
3 changes: 2 additions & 1 deletion zk-sdk/src/encryption/elgamal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -835,8 +835,9 @@ mod tests {
super::*,
crate::encryption::pedersen::Pedersen,
bip39::{Language, Mnemonic, MnemonicType, Seed},
solana_keypair::Keypair,
solana_pubkey::Pubkey,
solana_signer::{keypair::Keypair, null_signer::NullSigner},
solana_signer::null_signer::NullSigner,
std::fs::{self, File},
};

Expand Down
2 changes: 1 addition & 1 deletion zk-sdk/src/sigma_proofs/pubkey_validity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ mod test {
crate::{
encryption::pod::elgamal::PodElGamalPubkey, sigma_proofs::pod::PodPubkeyValidityProof,
},
solana_keypair::Keypair,
solana_pubkey::Pubkey,
solana_signer::keypair::Keypair,
std::str::FromStr,
};

Expand Down

0 comments on commit 9551211

Please sign in to comment.