aboutsummaryrefslogtreecommitdiff
path: root/zkvms
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-01-31 12:58:24 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-01-31 12:58:24 +0200
commit6945c597d9f39e8d603e8cdac17705c8b167e2ba (patch)
treebcc9d2244cd4b85a80a3826e8d5dcf051033c878 /zkvms
parenta673cfb1c33c35d4e151329f882a00b12a03da14 (diff)
downloadzkVMs-benchmarks-6945c597d9f39e8d603e8cdac17705c8b167e2ba.tar
zkVMs-benchmarks-6945c597d9f39e8d603e8cdac17705c8b167e2ba.tar.gz
zkVMs-benchmarks-6945c597d9f39e8d603e8cdac17705c8b167e2ba.zip
fix(zkvms/nexus): Use the zkvms_host_io Output type, instead of the local one
Diffstat (limited to 'zkvms')
-rw-r--r--zkvms/nexus/host/src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/zkvms/nexus/host/src/main.rs b/zkvms/nexus/host/src/main.rs
index 561c2f0..a4e7964 100644
--- a/zkvms/nexus/host/src/main.rs
+++ b/zkvms/nexus/host/src/main.rs
@@ -1,12 +1,10 @@
-use zkvms_host_io::{Input, read_args, RunType::{ Execute, Prove, Verify }};
+use zkvms_host_io::{Input, Output, read_args, RunType::{ Execute, Prove, Verify }};
use nexus_sdk::{
compile::CompileOpts,
nova::seq::{Generate, Nova, PP},
Local, Prover, Verifiable,
};
-type Output = bool;
-
fn main() {
let run_info = read_args();
if run_info.run_type == Execute {