Skip to content

Commit

Permalink
cleanup: removed lingering console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaniza committed Sep 10, 2024
1 parent 2f3754a commit 1ae8fe9
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 163 deletions.
2 changes: 0 additions & 2 deletions src/escrow/increasing/QuadraticIncreasingEscrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ import {ReentrancyGuardUpgradeable as ReentrancyGuard} from "@openzeppelin/contr
import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import {DaoAuthorizableUpgradeable as DaoAuthorizable} from "@aragon/osx/core/plugin/dao-authorizable/DaoAuthorizableUpgradeable.sol";

import {console2 as console} from "forge-std/console2.sol";

/// @title Quadratic Increasing Escrow
contract QuadraticIncreasingEscrow is
IEscrowCurve,
Expand Down
3 changes: 0 additions & 3 deletions src/escrow/increasing/VotingEscrowIncreasing.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ import {ReentrancyGuardUpgradeable as ReentrancyGuard} from "@openzeppelin/contr
import {PausableUpgradeable as Pausable} from "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import {DaoAuthorizableUpgradeable as DaoAuthorizable} from "@aragon/osx/core/plugin/dao-authorizable/DaoAuthorizableUpgradeable.sol";

// tools - delete
import {console2 as console} from "forge-std/console2.sol";

contract VotingEscrow is
IVotingEscrow,
ReentrancyGuard,
Expand Down
2 changes: 0 additions & 2 deletions src/libs/EpochDurationLib.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.17;

import {console2 as console} from "forge-std/console2.sol";

library EpochDurationLib {
uint256 internal constant EPOCH_DURATION = 2 weeks;
uint256 internal constant DEPOSIT_INTERVAL = 1 weeks;
Expand Down
55 changes: 0 additions & 55 deletions src/voting/GaugeVoting.md

This file was deleted.

2 changes: 0 additions & 2 deletions src/voting/SimpleGaugeVoter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ import {PausableUpgradeable as Pausable} from "@openzeppelin/contracts-upgradeab
import {EpochDurationLib} from "@libs/EpochDurationLib.sol";
import {PluginUUPSUpgradeable} from "@aragon/osx/core/plugin/PluginUUPSUpgradeable.sol";

import {console2 as console} from "forge-std/console2.sol";

contract SimpleGaugeVoter is ISimpleGaugeVoter, ReentrancyGuard, Pausable, PluginUUPSUpgradeable {
/// @notice The Gauge admin can can create and manage voting gauges for token holders
bytes32 public constant GAUGE_ADMIN_ROLE = keccak256("GAUGE_ADMIN");
Expand Down
99 changes: 0 additions & 99 deletions test/escrow/escrow/TEST_CASES.md

This file was deleted.

0 comments on commit 1ae8fe9

Please sign in to comment.