Skip to content

Commit

Permalink
update submodule name from fee_sigma_proof to `percentage_with_cap_…
Browse files Browse the repository at this point in the history
…proof`
  • Loading branch information
samkim-crypto committed Apr 11, 2024
1 parent e366a89 commit 6d257f9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion zk-token-sdk/src/instruction/fee_sigma.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use {
crate::{
encryption::pedersen::{PedersenCommitment, PedersenOpening},
errors::{ProofGenerationError, ProofVerificationError},
sigma_proofs::fee_proof::PercentageWithCapProof,
sigma_proofs::percentage_with_cap_proof::PercentageWithCapProof,
transcript::TranscriptProtocol,
},
merlin::Transcript,
Expand Down
2 changes: 1 addition & 1 deletion zk-token-sdk/src/instruction/transfer/with_fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use {
sigma_proofs::{
batched_grouped_ciphertext_validity_proof::BatchedGroupedCiphertext2HandlesValidityProof,
ciphertext_commitment_equality_proof::CiphertextCommitmentEqualityProof,
fee_proof::PercentageWithCapProof,
percentage_with_cap_proof::PercentageWithCapProof,
},
transcript::TranscriptProtocol,
},
Expand Down
2 changes: 1 addition & 1 deletion zk-token-sdk/src/sigma_proofs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ pub mod batched_grouped_ciphertext_validity_proof;
pub mod ciphertext_ciphertext_equality_proof;
pub mod ciphertext_commitment_equality_proof;
pub mod errors;
pub mod fee_proof;
pub mod grouped_ciphertext_validity_proof;
pub mod percentage_with_cap_proof;
pub mod pubkey_proof;
pub mod zero_balance_proof;

Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion zk-token-sdk/src/zk_token_elgamal/pod/sigma_proofs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ use crate::sigma_proofs::{
batched_grouped_ciphertext_validity_proof::BatchedGroupedCiphertext2HandlesValidityProof as DecodedBatchedGroupedCiphertext2HandlesValidityProof,
ciphertext_ciphertext_equality_proof::CiphertextCiphertextEqualityProof as DecodedCiphertextCiphertextEqualityProof,
ciphertext_commitment_equality_proof::CiphertextCommitmentEqualityProof as DecodedCiphertextCommitmentEqualityProof,
errors::*, fee_proof::PercentageWithCapProof as DecodedPercentageWithCapProof,
errors::*,
grouped_ciphertext_validity_proof::GroupedCiphertext2HandlesValidityProof as DecodedGroupedCiphertext2HandlesValidityProof,
percentage_with_cap_proof::PercentageWithCapProof as DecodedPercentageWithCapProof,
pubkey_proof::PubkeyValidityProof as DecodedPubkeyValidityProof,
zero_balance_proof::ZeroBalanceProof as DecodedZeroBalanceProof,
};
Expand Down

0 comments on commit 6d257f9

Please sign in to comment.