Skip to content

Commit 944f418

Browse files
committed
move contract to emergency folder
1 parent 0f34f4c commit 944f418

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

contracts/sol6/Dao/EmergencyFeeHandler.sol renamed to contracts/sol6/Dao/emergency/EmergencyFeeHandler.sol

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
pragma solidity 0.6.6;
22

3-
import "../IKyberFeeHandler.sol";
4-
import "../utils/PermissionGroupsNoModifiers.sol";
5-
import "../utils/zeppelin/ReentrancyGuard.sol";
6-
import "../utils/zeppelin/SafeMath.sol";
7-
import "../utils/Utils5.sol";
8-
import "@nomiclabs/buidler/console.sol";
9-
3+
import "../../IKyberFeeHandler.sol";
4+
import "../../utils/PermissionGroupsNoModifiers.sol";
5+
import "../../utils/zeppelin/ReentrancyGuard.sol";
6+
import "../../utils/zeppelin/SafeMath.sol";
7+
import "../../utils/Utils5.sol";
8+
9+
/**
10+
* @title kyberFeeHandler
11+
*
12+
* @dev EmergencyFeeHandler works when dao has problem
13+
* rebateBps and rewardBps is only set when initialization
14+
* user can claim platformfee, rebate and reward will be distributed by admin
15+
*/
1016
contract EmergencyKyberFeeHandler is IKyberFeeHandler, PermissionGroupsNoModifiers, ReentrancyGuard, Utils5 {
1117
using SafeMath for uint256;
1218

contracts/sol6/Dao/mock/MockEmergencyFeeHandler.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
pragma solidity 0.6.6;
22

3-
import "../EmergencyFeeHandler.sol";
4-
3+
import "../emergency/EmergencyFeeHandler.sol";
54

65
contract MockEmergencyFeeHandler is EmergencyKyberFeeHandler {
76
constructor(

0 commit comments

Comments
 (0)