From 9d898b507fd319d41b60aa62f3fa6cae8d74020a Mon Sep 17 00:00:00 2001 From: parazyd Date: Fri, 7 Jan 2022 13:52:59 +0100 Subject: [PATCH] zkas/compiler: Don't write STATEMENT_TYPE to circuit statements. --- zkas/src/compiler.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/zkas/src/compiler.rs b/zkas/src/compiler.rs index c1d7541bb..706338da6 100644 --- a/zkas/src/compiler.rs +++ b/zkas/src/compiler.rs @@ -73,7 +73,6 @@ impl Compiler { _ => unreachable!(), } - bincode.push(i.typ as u8); bincode.push(i.opcode as u8); bincode.extend_from_slice(&i.args.len().to_le_bytes());