Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ZcashFoundation/frost-zcash-demo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b63c18b63b91f3443efaa911d10b6a20ca1a1ce5
Choose a base ref
..
head repository: ZcashFoundation/frost-zcash-demo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 73b1ad2ebd2a6abaf8b0423c73b7192816bb8a48
Choose a head ref
Showing with 27 additions and 14 deletions.
  1. +17 −8 Cargo.lock
  2. +1 −1 coordinator/Cargo.toml
  3. +1 −1 dkg/Cargo.toml
  4. +1 −1 frost-client/Cargo.toml
  5. +3 −1 frost-client/src/coordinator.rs
  6. +3 −1 frost-client/src/participant.rs
  7. +1 −1 trusted-dealer/Cargo.toml
25 changes: 17 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion coordinator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ thiserror = "2.0"
rand = "0.8"
serde_json = "1.0"
serdect = { version = "0.2.0" }
itertools = "0.13.0"
itertools = "0.14.0"
exitcode = "1.1.2"
clap = { version = "4.5.23", features = ["derive"] }
reqwest = { version = "0.12.12", features = ["json"] }
2 changes: 1 addition & 1 deletion dkg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ hex = { version = "0.4", features = ["serde"] }
thiserror = "2.0"
rand = "0.8"
serde_json = "1.0"
itertools = "0.13.0"
itertools = "0.14.0"
exitcode = "1.1.2"
pipe = "0.4.0"
frostd = { path = "../frostd" }
2 changes: 1 addition & 1 deletion frost-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -31,5 +31,5 @@ frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
rand = "0.8"
stable-eyre = "0.2"
itertools = "0.13.0"
itertools = "0.14.0"
xeddsa = "1.0.2"
4 changes: 3 additions & 1 deletion frost-client/src/coordinator.rs
Original file line number Diff line number Diff line change
@@ -89,7 +89,9 @@ pub(crate) async fn run_for_ciphersuite<C: RandomizedCiphersuite + 'static>(
.host_str()
.ok_or_eyre("host missing in URL")?
.to_owned(),
port: server_url_parsed.port().unwrap_or(2744),
port: server_url_parsed
.port_or_known_default()
.expect("always works for https"),
comm_privkey: Some(
config
.communication_key
4 changes: 3 additions & 1 deletion frost-client/src/participant.rs
Original file line number Diff line number Diff line change
@@ -72,7 +72,9 @@ pub(crate) async fn run_for_ciphersuite<C: RandomizedCiphersuite + 'static>(
.host_str()
.ok_or_eyre("host missing in URL")?
.to_owned(),
port: server_url_parsed.port().unwrap_or(2744),
port: server_url_parsed
.port_or_known_default()
.expect("always works for https"),
session_id: session.unwrap_or_default(),
comm_privkey: Some(
config
2 changes: 1 addition & 1 deletion trusted-dealer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ clap = { version = "4.5.23", features = ["derive"] }
thiserror = "2.0"
rand = "0.8"
hex = "0.4"
itertools = "0.13.0"
itertools = "0.14.0"
exitcode = "1.1.2"
serde_json = "1.0"