Skip to content

Commit

Permalink
Update bindings according to main PR
Browse files Browse the repository at this point in the history
  • Loading branch information
volhovm committed Nov 16, 2023
1 parent 667090e commit ecfc199
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions kimchi/wasm/src/pasta_fp_plonk_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ pub struct WasmPastaFpLookupTable {
impl From<WasmPastaFpLookupTable> for LookupTable<Fp> {
fn from(wasm_lt: WasmPastaFpLookupTable) -> LookupTable<Fp> {
LookupTable {
id: wasm_lt.id.into(),
data: wasm_lt.data.0,
id: wasm_lt.id().into(),
data: wasm_lt.data().0,
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions kimchi/wasm/src/pasta_fq_plonk_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ pub struct WasmPastaFqLookupTable {
impl From<WasmPastaFqLookupTable> for LookupTable<Fq> {
fn from(wasm_lt: WasmPastaFqLookupTable) -> LookupTable<Fq> {
LookupTable {
id: wasm_lt.id.into(),
data: wasm_lt.data.0,
id: wasm_lt.id().into(),
data: wasm_lt.data().0,
}
}
}
Expand Down

0 comments on commit ecfc199

Please sign in to comment.