Skip to content

Commit

Permalink
feat(protocol): allow first block proposer to skip EOA check signature (
Browse files Browse the repository at this point in the history
#16899)

Co-authored-by: David <david@taiko.xyz>
  • Loading branch information
dantaik and davidtaikocha committed Apr 29, 2024
1 parent c8384f2 commit f1c6b41
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 @@ -140,7 +140,7 @@ library LibProposing {
// We cannot rely on `msg.sender != tx.origin` for EOA check, as it will break after EIP
// 7645: Alias ORIGIN to SENDER
if (
_checkEOAForCalldataDA
_checkEOAForCalldataDA && meta_.id != 1
&& ECDSA.recover(meta_.blobHash, params.signature) != msg.sender
) {
revert L1_INVALID_SIG();
Expand Down

0 comments on commit f1c6b41

Please sign in to comment.