Emulate teller-network, coverage still failing
This commit is contained in:
parent
9216468a32
commit
2e384b8188
|
@ -1,7 +1,7 @@
|
||||||
pragma solidity ^0.5.2;
|
pragma solidity ^0.5.2;
|
||||||
|
|
||||||
import "./utils/MiniMeTokenInterface.sol";
|
import "./token/MiniMeTokenInterface.sol";
|
||||||
import "./utils/ApproveAndCallFallBack.sol";
|
import "./token/ApproveAndCallFallBack.sol";
|
||||||
import "./utils/SafeMath.sol";
|
import "./utils/SafeMath.sol";
|
||||||
import "./utils/BancorFormula.sol";
|
import "./utils/BancorFormula.sol";
|
||||||
|
|
||||||
|
|
|
@ -23,10 +23,10 @@ pragma solidity ^0.5.2;
|
||||||
* @dev It is ERC20 compliant, but still needs to under go further testing.
|
* @dev It is ERC20 compliant, but still needs to under go further testing.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import "./Controlled.sol";
|
import "../common/Controlled.sol";
|
||||||
import "./TokenController.sol";
|
import "./TokenController.sol";
|
||||||
import "../utils/ApproveAndCallFallBack.sol";
|
import "./ApproveAndCallFallBack.sol";
|
||||||
import "../utils/MiniMeTokenInterface.sol";
|
import "./MiniMeTokenInterface.sol";
|
||||||
import "./TokenFactory.sol";
|
import "./TokenFactory.sol";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -32,8 +32,7 @@ config({
|
||||||
"DAppStore": {
|
"DAppStore": {
|
||||||
args: [ "$SNT" ]
|
args: [ "$SNT" ]
|
||||||
},
|
},
|
||||||
"TestBancorFormula": { },
|
"TestBancorFormula": { }
|
||||||
"Controlled": { }
|
|
||||||
}
|
}
|
||||||
}, (_err, web3_accounts) => {
|
}, (_err, web3_accounts) => {
|
||||||
accounts = web3_accounts
|
accounts = web3_accounts
|
||||||
|
|
Loading…
Reference in New Issue