Skip to content

Commit

Permalink
Return bool on verify blob
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Oct 7, 2024
1 parent aec2b24 commit d07c7a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion l1-contracts/contracts/eigenda/EigenDAVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ contract EigenDAVerifier is Ownable {

function verifyBlob(
BlobInfo calldata blobInfo
) external view {
) external view returns (bool) {
require(address(EIGEN_DA_SERVICE_MANAGER) != address(0), "EigenDAVerifier: EIGEN_DA_SERVICE_MANAGER not set");
EigenDARollupUtils.verifyBlob(blobInfo.blobHeader, EIGEN_DA_SERVICE_MANAGER, blobInfo.blobVerificationProof);
return true;
}
}

0 comments on commit d07c7a6

Please sign in to comment.