-
Notifications
You must be signed in to change notification settings - Fork 138
Reverting some commits... #3157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a0f7ecf
ef33f82
be0ab46
78c75a8
1ac15e6
c4e5d6f
e58a737
7e8ecf6
98e9d70
4ed6523
b9c9d7e
bc92b42
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| use ark_poly::EvaluationDomain; | ||
| use base64::{engine::general_purpose, Engine}; | ||
| use kimchi::circuits::lookup::runtime_tables::RuntimeTableCfg; | ||
|
|
||
| use crate::{ | ||
|
|
@@ -271,7 +270,7 @@ pub fn caml_pasta_fp_plonk_index_write( | |
| #[wasm_bindgen] | ||
| pub fn caml_pasta_fp_plonk_index_serialize(index: &WasmPastaFpPlonkIndex) -> String { | ||
| let serialized = rmp_serde::to_vec(&index.0).unwrap(); | ||
| general_purpose::STANDARD.encode(serialized) | ||
| base64::encode(serialized) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: it would be better to rebase the branch and remove this "revert revert revert" change together with "revert revert" change earlier in the same PR to avoid confusion... this looks quite innocent to me btw but we can keep it in the old
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Spoiler: it is not innocent. |
||
| } | ||
|
|
||
| // helpers | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.