Skip to content

Commit

Permalink
bump dep version
Browse files Browse the repository at this point in the history
  • Loading branch information
omershlo committed Dec 9, 2019
1 parent 5308f0b commit 3a4bf00
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multi-party-schnorr"
version = "0.3.1"
version = "0.3.2"
authors = [
"Omer <[email protected]>",
"Gary <[email protected]>"
Expand All @@ -12,11 +12,11 @@ crate-type = ["lib"]
[dependencies]
serde = "1.0"
serde_derive = "1.0"
curv = { git = "https://github.com/KZen-networks/curv" , tag = "v0.2.2", features = ["ec_secp256k1","merkle"]}
curv = { git = "https://github.com/KZen-networks/curv" , tag = "v0.2.3", features = ["ec_secp256k1","merkle"]}

[dependencies.centipede]
git = "https://github.com/KZen-networks/centipede"
tag = "v0.2.1"
tag = "v0.2.2"

[dev-dependencies]
hex = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion src/protocols/thresholdsig/bitcoin_schnorr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ impl LocalSig {
parties_index_vec: &[usize],
vss_private_keys: &Vec<VerifiableSS>,
vss_ephemeral_keys: &Vec<VerifiableSS>,
) -> Result<(VerifiableSS), Error> {
) -> Result<VerifiableSS, Error> {
//parties_index_vec is a vector with indices of the parties that are participating and provided gamma_i for this step
// test that enough parties are in this round
assert!(parties_index_vec.len() > vss_private_keys[0].parameters.threshold);
Expand Down
2 changes: 1 addition & 1 deletion src/protocols/thresholdsig/zilliqa_schnorr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ impl LocalSig {
parties_index_vec: &[usize],
vss_private_keys: &Vec<VerifiableSS>,
vss_ephemeral_keys: &Vec<VerifiableSS>,
) -> Result<(VerifiableSS), Error> {
) -> Result<VerifiableSS, Error> {
//parties_index_vec is a vector with indices of the parties that are participating and provided gamma_i for this step
// test that enough parties are in this round
assert!(parties_index_vec.len() > vss_private_keys[0].parameters.threshold);
Expand Down

0 comments on commit 3a4bf00

Please sign in to comment.