Skip to content

Commit 8e0f30c

Browse files
author
Ted Wu
committed
Code review comments
1 parent 07e229b commit 8e0f30c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

contracts/Orchestrator.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,8 @@ contract Orchestrator is Ownable {
4747
for (uint256 i = 0; i < transactions.length; i++) {
4848
Transaction storage t = transactions[i];
4949
if (t.enabled) {
50-
(bool result, bytes memory reason) = t.destination.call(t.data);
50+
(bool result, ) = t.destination.call(t.data);
5151
if (!result) {
52-
emit TransactionFailed(t.destination, i, t.data);
5352
revert("Transaction Failed");
5453
}
5554
}

0 commit comments

Comments
 (0)