From 4b2596dbad4a68bd09e4b844637102eb347c0ec3 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Mon, 16 Sep 2019 08:59:04 -0500 Subject: [PATCH] ensure BeaconBlocksByRoot requests are lists rather than containers --- specs/networking/p2p-interface.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/networking/p2p-interface.md b/specs/networking/p2p-interface.md index 46663fff1..4f71ed6d9 100644 --- a/specs/networking/p2p-interface.md +++ b/specs/networking/p2p-interface.md @@ -422,7 +422,7 @@ Request Content: ``` ( - block_roots: []HashTreeRoot + []HashTreeRoot ) ``` @@ -430,7 +430,7 @@ Response Content: ``` ( - blocks: []BeaconBlock + []BeaconBlock ) ```