Skip to content

Commit

Permalink
fix(protocol): block reusability check error fixed (TKO-18) (#15572)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik authored Jan 26, 2024
1 parent ab5f329 commit 27ce911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/contracts/L1/libs/LibProposing.sol
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ library LibProposing {

if (params.blobHash != 0) {
// We try to reuse an old blob
if (isBlobReusable(state, config, params.blobHash)) {
if (!isBlobReusable(state, config, params.blobHash)) {
revert L1_BLOB_NOT_REUSEABLE();
}
meta.blobHash = params.blobHash;
Expand Down

0 comments on commit 27ce911

Please sign in to comment.