We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 824e1a6 + 3d7b48f commit 39cf8e7Copy full SHA for 39cf8e7
1 file changed
api/service/api_test.go
@@ -180,6 +180,14 @@ func TestAPIService(t *testing.T) {
180
Data: blockTwo.BlobSidecars.Data,
181
},
182
183
+ {
184
+ name: "multi indices comma separated list",
185
+ path: "/eth/v1/beacon/blob_sidecars/1234?indices=0,1",
186
+ status: 200,
187
+ expected: &storage.BlobSidecars{
188
+ Data: blockTwo.BlobSidecars.Data,
189
+ },
190
191
{
192
name: "only index out of bounds returns empty array",
193
path: "/eth/v1/beacon/blob_sidecars/1234?indices=3",
0 commit comments