Skip to content

Commit

Permalink
calldata check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Jul 5, 2024
1 parent 967f7ee commit 5962ba9
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 @@ -181,7 +181,7 @@ library LibProposing {
// ) {
// revert L1_INVALID_SIG();
// }
require(!_config.checkEOAForCalldataDA || msg.sender != tx.origin, "not EOA");
require(!_config.checkEOAForCalldataDA || msg.sender == tx.origin, "not EOA");

emit CalldataTxList(meta_.id, _txList);
}
Expand Down

0 comments on commit 5962ba9

Please sign in to comment.