From d1310f50c64f19c633de3232967eff34576c83d3 Mon Sep 17 00:00:00 2001 From: oxBoni Date: Thu, 27 Nov 2025 21:02:20 +0100 Subject: [PATCH] Update eip-8030.md --- EIPS/eip-8030.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-8030.md b/EIPS/eip-8030.md index 9fe8c45427bf2b..f3370dd43033a2 100644 --- a/EIPS/eip-8030.md +++ b/EIPS/eip-8030.md @@ -46,7 +46,7 @@ def verify(signature_info: bytes, payload_hash: Hash32) -> Bytes: # This is defined in [P256Verify Function](#p256verify-function) assert(P256Verify(payload_hash, r, s, x, y) == Bytes("0x0000000000000000000000000000000000000000000000000000000000000001")) - return x.to_bytes(32, "big") + y.to_bytes(32, "big") + return x + y ```