mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-08 22:28:12 -05:00
zkas: Implement debug symbols in the compiled binary
This commit is contained in:
@@ -46,7 +46,7 @@ use darkfi::{
|
||||
#[test]
|
||||
fn halo2_vk_ser() -> Result<()> {
|
||||
let bincode = include_bytes!("../proof/opcodes.zk.bin");
|
||||
let zkbin = ZkBinary::decode(bincode)?;
|
||||
let zkbin = ZkBinary::decode(bincode, false)?;
|
||||
|
||||
let verifier_witnesses = empty_witnesses(&zkbin)?;
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ use darkfi::{
|
||||
#[test]
|
||||
fn zkvm_smt() -> Result<()> {
|
||||
let bincode = include_bytes!("../proof/smt.zk.bin");
|
||||
let zkbin = ZkBinary::decode(bincode)?;
|
||||
let zkbin = ZkBinary::decode(bincode, false)?;
|
||||
|
||||
let hasher = PoseidonFp::new();
|
||||
let store = MemoryStorageFp::new();
|
||||
|
||||
@@ -46,7 +46,7 @@ use darkfi::{
|
||||
#[test]
|
||||
fn zkvm_opcodes() -> Result<()> {
|
||||
let bincode = include_bytes!("../proof/opcodes.zk.bin");
|
||||
let zkbin = ZkBinary::decode(bincode)?;
|
||||
let zkbin = ZkBinary::decode(bincode, false)?;
|
||||
|
||||
// Values for the proof
|
||||
let value = 666_u64;
|
||||
|
||||
Reference in New Issue
Block a user