Skip to content

Commit

Permalink
error message updated for blob length error
Browse files Browse the repository at this point in the history
  • Loading branch information
mohiiit committed Jun 13, 2024
1 parent 90e4a70 commit a0e4c2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/orchestrator/src/jobs/da_job/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ impl Job for DaJob {
// there is a limit on number of blobs per txn, checking that here
if current_blob_length > max_blob_per_txn {
return Err(eyre!(
"Cannot process block {} for job id {} as number of blobs allowd are {} but it contains {} blobs",
block_no,
job.id,
"Exceeded the maximum number of blobs per transaction: allowed {}, found {} for block {} and job id {}",
max_blob_per_txn,
current_blob_length
current_blob_length,
block_no,
job.id
));
}

Expand Down

0 comments on commit a0e4c2e

Please sign in to comment.