From e564c2d1e21ccf4940c8592bcd6cd1581ab078fa Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 15 Sep 2025 18:22:43 +0200 Subject: [PATCH] Remove comment from getInput function Removed comment about reading RLP-encoded payload directly. --- cmd/keeper/getpayload_ziren.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/keeper/getpayload_ziren.go b/cmd/keeper/getpayload_ziren.go index 2cc8365388..11c5845bcc 100644 --- a/cmd/keeper/getpayload_ziren.go +++ b/cmd/keeper/getpayload_ziren.go @@ -26,7 +26,6 @@ import ( // The zkVM host provides the RLP-encoded Payload structure containing // the block and witness data through the runtime's input mechanism. func getInput() []byte { - // Read the RLP-encoded payload directly from the zkVM runtime input := zkruntime.Read[[]byte]() return input }