Remove comment from getInput function

Removed comment about reading RLP-encoded payload directly.
This commit is contained in:
Felix Lange 2025-09-15 18:22:43 +02:00 committed by GitHub
parent 067d574445
commit e564c2d1e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
}