Try get embark coverage working WIP
This commit is contained in:
parent
26dbfbfcbe
commit
9216468a32
|
@ -268,10 +268,11 @@ contract BancorFormula {
|
|||
|
||||
while (lo + 1 < hi) {
|
||||
uint8 mid = (lo + hi) / 2;
|
||||
if (maxExpArray[mid] >= _x)
|
||||
if (maxExpArray[mid] >= _x) {
|
||||
lo = mid;
|
||||
else
|
||||
} else {
|
||||
hi = mid;
|
||||
}
|
||||
}
|
||||
|
||||
if (maxExpArray[hi] >= _x)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
pragma solidity ^0.5.2;
|
||||
|
||||
import "../token/ERC20Token.sol";
|
||||
import "./ERC20Token.sol";
|
||||
|
||||
|
||||
contract MiniMeTokenInterface is ERC20Token {
|
||||
|
|
|
@ -32,7 +32,8 @@ config({
|
|||
"DAppStore": {
|
||||
args: [ "$SNT" ]
|
||||
},
|
||||
"TestBancorFormula": { }
|
||||
"TestBancorFormula": { },
|
||||
"Controlled": { }
|
||||
}
|
||||
}, (_err, web3_accounts) => {
|
||||
accounts = web3_accounts
|
||||
|
|
Loading…
Reference in New Issue