Skip to content

Commit

Permalink
Merge remote-tracking branch 'mehdi-aouadi/8622-engine-get-blobs' int…
Browse files Browse the repository at this point in the history
…o use-engineGetBlobs
  • Loading branch information
tbenr committed Oct 1, 2024
2 parents 52e5a9b + 898dba1 commit 89e981c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public void getBlobsV1_shouldBuildRequestAndResponseSuccessfully() {
.matches(response -> response.getPayload().equals(blobsAndProofsV1));

final Map<String, Object> requestData = takeRequest();
verifyJsonRpcMethodCall(requestData, "engine_getBlobsVersionV1");
verifyJsonRpcMethodCall(requestData, "engine_getBlobsV1");
assertThat(requestData.get("params"))
.asInstanceOf(LIST)
.containsExactly(blobVersionedHashes.stream().map(VersionedHash::toHexString).toList());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public SafeFuture<Response<List<BlobAndProofV1>>> getBlobsV1(
blobVersionedHashes.stream().map(VersionedHash::toHexString).toList();
final Request<?, GetBlobsVersionV1Web3jResponse> web3jRequest =
new Request<>(
"engine_getBlobsVersionV1",
"engine_getBlobsV1",
list(expectedBlobVersionedHashes),
web3JClient.getWeb3jService(),
GetBlobsVersionV1Web3jResponse.class);
Expand Down

0 comments on commit 89e981c

Please sign in to comment.