We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ba8efb commit a85f27fCopy full SHA for a85f27f
explorer/lib/explorer_web/live/utils.ex
@@ -347,7 +347,7 @@ defmodule Utils do
347
def calculate_proof_hashes(deserialized_batch) do
348
deserialized_batch
349
|> Enum.map(fn s3_object ->
350
- ExKeccak.hash_256(:erlang.list_to_binary(s3_object["proof"]))
+ ExKeccak.hash_256(s3_object["proof"].value)
351
end)
352
end
353
@@ -378,9 +378,9 @@ defmodule Utils do
378
def fetch_batch_data_pointer_with_multiple_urls(batch_data_pointers) do
379
# Parse comma-separated URLs and limit to max 5
380
urls = parse_batch_urls(batch_data_pointers)
381
-
+
382
errors = []
383
384
# Try each URL until first successful response
385
try_urls(urls, errors)
386
0 commit comments