Skip to content

Commit

Permalink
fix inconsistent naming
Browse files Browse the repository at this point in the history
  • Loading branch information
arseneeth committed May 4, 2020
1 parent e265b96 commit 843f0f8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 26 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pragma solidity ^0.5.7;


contract Collector {
contract FeeCalculator {

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pragma solidity ^0.5.7;


contract Calculator {
contract FeeCollector {

}
4 changes: 2 additions & 2 deletions contracts/fee/Manager.sol → contracts/fee/FeeManager.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pragma solidity ^0.5.7;

import './Calculator.sol';
import './Collector.sol';
import './FeeCalculator.sol';
import './FeeCollector.sol';
import 'openzeppelin-solidity/contracts/math/SafeMath.sol';

contract FeeManager {
Expand Down
2 changes: 1 addition & 1 deletion contracts/templates/ERC20Template.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pragma solidity ^0.5.7;

import '../fee/Manager.sol';
import '../fee/FeeManager.sol';
import './token/ERC20Pausable.sol';

/**
Expand Down
20 changes: 0 additions & 20 deletions test/TokenFactory.js

This file was deleted.

2 changes: 1 addition & 1 deletion test/unit/Factory.Test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const Factory = artifacts.require("Factory");

const truffleAssert = require('truffle-assertions');

contract("actory test", async accounts => {
contract("Factory test", async accounts => {
let factory;

beforeEach('innit contracts for each test', async function () {
Expand Down

0 comments on commit 843f0f8

Please sign in to comment.