We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e229b commit 8e0f30cCopy full SHA for 8e0f30c
contracts/Orchestrator.sol
@@ -47,9 +47,8 @@ contract Orchestrator is Ownable {
47
for (uint256 i = 0; i < transactions.length; i++) {
48
Transaction storage t = transactions[i];
49
if (t.enabled) {
50
- (bool result, bytes memory reason) = t.destination.call(t.data);
+ (bool result, ) = t.destination.call(t.data);
51
if (!result) {
52
- emit TransactionFailed(t.destination, i, t.data);
53
revert("Transaction Failed");
54
}
55
0 commit comments