Skip to content

Commit 4b4d247

Browse files
committed
rename callid to txId
1 parent 8f49d66 commit 4b4d247

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/common/crosschain/CrossChainController.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,16 +274,16 @@ contract CrossChainController is ICrossChainController, DaoAuthorizable {
274274
/// @notice Decodes and executes an authenticated payload on the DAO.
275275
/// @dev External only so it can be wrapped in `try/catch`; callable
276276
/// exclusively by this contract.
277-
/// @param _callId The call id passed to the executor.
277+
/// @param _txId The tx Id passed to the executor.
278278
/// @param _payload The encoded Action[] message.
279-
function executeActions(bytes32 _callId, bytes memory _payload) external {
279+
function executeActions(bytes32 _txId, bytes memory _payload) external {
280280
if (msg.sender != address(this)) {
281281
revert Errors.CALLER_NOT_SELF(msg.sender);
282282
}
283283

284284
Action[] memory actions = abi.decode(_payload, (Action[]));
285285

286-
IExecutor(address(dao())).execute(_callId, actions, 0);
286+
IExecutor(address(dao())).execute(_txId, actions, 0);
287287
}
288288

289289
/// @inheritdoc ICrossChainController

0 commit comments

Comments
 (0)