Skip to content

Commit

Permalink
clean up contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
arseneeth committed Apr 22, 2020
1 parent 4b878f1 commit 743436d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions contracts/DataTokenTemplate.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pragma solidity ^0.5.7;

import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "./ServiceFeeManager.sol";
import 'openzeppelin-solidity/contracts/token/ERC20/ERC20.sol';
import './utils/ServiceFeeManager.sol';

contract DataTokenTemplate is ERC20, ServiceFeeManager {
using SafeMath for uint256;
Expand Down
4 changes: 2 additions & 2 deletions contracts/TokenFactory.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pragma solidity 0.5.7;
pragma solidity ^0.5.7;

import './Deployer.sol';
import './utils/Deployer.sol';

contract TokenFactory is Deployer {

Expand Down
2 changes: 1 addition & 1 deletion contracts/Deployer.sol → contracts/utils/Deployer.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.5.7;
pragma solidity ^0.5.7;

contract Deployer {

Expand Down
File renamed without changes.

0 comments on commit 743436d

Please sign in to comment.