Skip to content

Commit

Permalink
rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
juan518munoz committed Dec 10, 2024
1 parent f2aa6f2 commit d8d75e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions get_all_blobs/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ const BLOB_DATA_JSON: &str = "blob_data.json";
const ABI_JSON: &str = "./abi/commitBatchesSharedBridge.json";
const COMMIT_BATCHES_SELECTOR: &str = "6edd4f12";

async fn get_blob(commitment: &str) -> anyhow::Result<Vec<u8>> {
async fn get_blob(blob_id: &str) -> anyhow::Result<Vec<u8>> {
let client = EigenClientRetriever::new(EIGENDA_API_URL).await?;
let blob_id = commitment;
let blob_info = client
.get_blob_status(blob_id)
.await?
Expand Down

0 comments on commit d8d75e7

Please sign in to comment.