Skip to content

Commit d8ebd7d

Browse files
committed
fix query parameter syntax
1 parent e3b2c4c commit d8ebd7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rollup/da_syncer/blob_client/beacon_node_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ func (c *BeaconNodeClient) getBlobsPath(slot uint64, versionedHash common.Hash)
115115
return "", fmt.Errorf("failed to parse path, err: %w", err)
116116
}
117117
q := u.Query()
118-
q.Set("versioned_hashes", fmt.Sprintf("[%s]", versionedHash.Hex()))
118+
q.Set("versioned_hashes", versionedHash.Hex())
119119
u.RawQuery = q.Encode()
120120
queryPath := u.String()
121121
return queryPath, nil

0 commit comments

Comments
 (0)