Skip to content

Commit

Permalink
chore: update default payload builder logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected committed Sep 28, 2024
1 parent 65f7e88 commit c18464e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions crates/ethereum/payload/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ where
warn!(target: "payload_builder",
parent_hash=%parent_block.hash(),
%err,
"failed to apply beacon root contract call for empty payload"
"failed to apply beacon root contract call for payload"
);
PayloadBuilderError::Internal(err.into())
})?;
Expand All @@ -195,7 +195,7 @@ where
parent_block.hash(),
)
.map_err(|err| {
warn!(target: "payload_builder", parent_hash=%parent_block.hash(), %err, "failed to update blockhashes for empty payload");
warn!(target: "payload_builder", parent_hash=%parent_block.hash(), %err, "failed to update blockhashes for payload");
PayloadBuilderError::Internal(err.into())
})?;

Expand Down Expand Up @@ -367,7 +367,7 @@ where
warn!(target: "payload_builder",
parent_hash=%parent_block.hash(),
%err,
"failed to calculate state root for empty payload"
"failed to calculate state root for payload"
);
})?
};
Expand Down
4 changes: 2 additions & 2 deletions crates/optimism/payload/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ where
warn!(target: "payload_builder",
parent_hash=%parent_block.hash(),
%err,
"failed to apply beacon root contract call for empty payload"
"failed to apply beacon root contract call for payload"
);
PayloadBuilderError::Internal(err.into())
})?;
Expand Down Expand Up @@ -459,7 +459,7 @@ where
warn!(target: "payload_builder",
parent_hash=%parent_block.hash(),
%err,
"failed to calculate state root for empty payload"
"failed to calculate state root for payload"
);
})?
};
Expand Down

0 comments on commit c18464e

Please sign in to comment.