Skip to content

Commit

Permalink
Update DelegateOwner.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed May 8, 2024
1 parent f3b2a39 commit 2570996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/protocol/contracts/L2/DelegateOwner.sol
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ contract DelegateOwner is EssentialContract, IMessageInvocable {

function _authorizePause(address, bool) internal pure override notImplemented { }

function _invokeCall(bytes calldata _callData, bool _verifyTxId) internal {
Call memory call = abi.decode(_callData, (Call));
function _invokeCall(bytes calldata _data, bool _verifyTxId) internal {
Call memory call = abi.decode(_data, (Call));

if (_verifyTxId && call.txId != nextTxId++) revert DO_INVALID_TX_ID();

Expand Down

0 comments on commit 2570996

Please sign in to comment.