Skip to content

Commit 7e81b0b

Browse files
committed
refactor: remove unused parameter from runTxIfCompleted function
1 parent 7739c8f commit 7e81b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/DelegatedLogicHandler.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ contract MockTxManager is ITxManager, MockStore {
9696
txStorage.nonce[txID] = src.nonce;
9797
}
9898

99-
function runTxIfCompleted(bytes32 txID, MsgInitiateTx.Data calldata msg_) external override {
99+
function runTxIfCompleted(bytes32 txID, MsgInitiateTx.Data calldata) external override {
100100
txStorage.status[txID] = MsgInitiateTxResponse.InitiateTxStatus.INITIATE_TX_STATUS_VERIFIED;
101101
txStorage.nonce[txID] = 1;
102102
}

0 commit comments

Comments
 (0)