From 97d3bba21ec7647b5a66fed809b89e23461e58a1 Mon Sep 17 00:00:00 2001 From: Ratan Kaliani Date: Sun, 2 Jun 2024 15:34:45 -0700 Subject: [PATCH] core fix --- core/src/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/io.rs b/core/src/io.rs index 9624c1c771..43542afb72 100644 --- a/core/src/io.rs +++ b/core/src/io.rs @@ -45,7 +45,7 @@ impl SP1Stdin { } /// Read a value from the buffer. - pub fn read(&mut self) -> T { + pub fn read(&mut self) -> T { let result: T = bincode::deserialize(&self.buffer[self.ptr]).expect("failed to deserialize"); self.ptr += 1;