Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion acvm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use acir::{
native_types::{Expression, Witness},
BlackBoxFunc,
};
use core::fmt::Debug;
use std::collections::BTreeMap;
use thiserror::Error;

Expand Down Expand Up @@ -52,7 +53,10 @@ pub enum OpcodeResolutionError {
BlackBoxFunctionFailed(BlackBoxFunc, String),
}

pub trait Backend: SmartContract + ProofSystemCompiler + PartialWitnessGenerator + Default {}
pub trait Backend:
SmartContract + ProofSystemCompiler + PartialWitnessGenerator + Default + Debug
{
}

/// This component will generate the backend specific output for
/// each OPCODE.
Expand Down