From 5914094f20ed121ef6b0dbdc95a713581c734821 Mon Sep 17 00:00:00 2001 From: Stefan Bratanov Date: Fri, 24 Feb 2023 09:30:41 +0000 Subject: [PATCH] change field name to align with spec --- .../datastructures/networking/libp2p/rpc/BlobIdentifier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/datastructures/networking/libp2p/rpc/BlobIdentifier.java b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/datastructures/networking/libp2p/rpc/BlobIdentifier.java index 0b2316ccff2..57e3f42bcd3 100644 --- a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/datastructures/networking/libp2p/rpc/BlobIdentifier.java +++ b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/datastructures/networking/libp2p/rpc/BlobIdentifier.java @@ -30,7 +30,7 @@ public static class BlobIdentifierSchema private BlobIdentifierSchema() { super( "BlobIdentifier", - namedSchema("blockRoot", SszPrimitiveSchemas.BYTES32_SCHEMA), + namedSchema("block_root", SszPrimitiveSchemas.BYTES32_SCHEMA), namedSchema("index", SszPrimitiveSchemas.UINT64_SCHEMA)); }