From 9fefecc9b3279a0db1545f90a6e9b96a065cc61e Mon Sep 17 00:00:00 2001 From: Julie Bettens Date: Tue, 19 Nov 2024 17:03:39 +0100 Subject: [PATCH] fix VDF bytes --- go-ethereum/f3b/vdf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-ethereum/f3b/vdf.go b/go-ethereum/f3b/vdf.go index 565c3f1..0b47195 100644 --- a/go-ethereum/f3b/vdf.go +++ b/go-ethereum/f3b/vdf.go @@ -20,7 +20,7 @@ func (e *VDF) ShareSecret(label []byte) (seed, encKey []byte, err error) { } const lBytes = 32 -const πBytes = 512 +const πBytes = 256 func (e *VDF) RevealSecret(label, encKey []byte) (reveal []byte, err error) { n := new(big.Int).SetBytes(encKey)