From f4793db8e32d83a4fa8d60c21ce53af2ba4bb872 Mon Sep 17 00:00:00 2001 From: nhtyy Date: Fri, 17 Jan 2025 11:13:01 -0800 Subject: [PATCH] fix: panic message read_vec -> read --- crates/zkvm/lib/src/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zkvm/lib/src/io.rs b/crates/zkvm/lib/src/io.rs index 82cd72c35..2554b971f 100644 --- a/crates/zkvm/lib/src/io.rs +++ b/crates/zkvm/lib/src/io.rs @@ -72,7 +72,7 @@ pub fn read() -> T { if failed { panic!( - "The input stream was exhausted before the call to read_vec @ {}", + "The input stream was exhausted before the call to read @ {}", std::panic::Location::caller() ) }