Browse Source

harness _execute()

Michael M 3 years ago
parent
commit
167f175f3a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      contracts/governance/extensions/GovernorTimelockControl.sol

+ 2 - 1
contracts/governance/extensions/GovernorTimelockControl.sol

@@ -109,7 +109,8 @@ abstract contract GovernorTimelockControl is IGovernorTimelock, Governor {
         bytes[] memory calldatas,
         bytes32 descriptionHash
     ) internal virtual override {
-        _timelock.executeBatch{value: msg.value}(targets, values, calldatas, 0, descriptionHash);
+        // HARNESS
+        // _timelock.executeBatch{value: msg.value}(targets, values, calldatas, 0, descriptionHash);
     }
 
     /**