Skip to content

Commit acc52d0

Browse files
committed
master switched to unpublished deps
1 parent 509f56e commit acc52d0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ ark-ff = { version = "0.5", default-features = false }
1111
ark-ec = { version = "0.5", default-features = false }
1212
ark-poly = { version = "0.5", default-features = false }
1313
ark-serialize = { version = "0.5", default-features = false, features = ["derive"] }
14-
w3f-pcs = { version = "0.0.2", default-features = false }
15-
rayon = { version = "1", default-features = false }
14+
w3f-pcs = { git = "https://github.com/w3f/fflonk", default-features = false }
15+
rayon = { version = "1", default-features = false }

w3f-ring-proof/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ark-poly.workspace = true
1616
ark-serialize.workspace = true
1717
w3f-pcs.workspace = true
1818
rayon = { workspace = true, optional = true }
19-
w3f-plonk-common = { version = "0.0.2", default-features = false }
19+
w3f-plonk-common = { path = "../w3f-plonk-common", default-features = false }
2020
ark-transcript = { version = "0.0.3", default-features = false }
2121

2222
[dev-dependencies]

w3f-ring-proof/src/piop/verifier.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ impl<F: PrimeField, C: Commitment<F>, Jubjub: TECurveConfig<BaseField = F>> Veri
124124
}
125125

126126
fn constraint_polynomials_linearized_commitments(&self) -> Vec<C> {
127-
let inner_prod_acc = self
127+
let inner_prod_acc = (&self
128128
.witness_columns_committed
129-
.inn_prod_acc
129+
.inn_prod_acc)
130130
.mul(self.inner_prod.not_last);
131131
let acc_x = &self.witness_columns_committed.cond_add_acc[0];
132132
let acc_y = &self.witness_columns_committed.cond_add_acc[1];

0 commit comments

Comments
 (0)