Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Jan 7, 2025
1 parent 9dde738 commit 9cc2eb1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ contract EigenDAL1Validator is IL1DAValidator, EigenDAAttestationLib {

output.stateDiffHash = stateDiffHash;

IEigenDABridge.MerkleProofInput memory input = abi.decode(operatorDAInput[32:], (IEigenDABridge.MerkleProofInput));
IEigenDABridge.MerkleProofInput memory input = abi.decode(
operatorDAInput[32:],
(IEigenDABridge.MerkleProofInput)
);
/*if (l2DAValidatorOutputHash != keccak256(abi.encodePacked(output.stateDiffHash, input.leaf)))
revert InvalidValidatorOutputHash();*/ //TODO: Maybe we don't need this
_attest(input);
Expand Down

0 comments on commit 9cc2eb1

Please sign in to comment.