@0x/contract-staking: Update CHANGELOG.

`@0x/contract-staking`: Add `DEFAULT_HYPER_PARAMETERS` to test constants.
`@0x/contract-staking`: Appease linter gods.
`@0x/contract-staking`: Remove `setCobbDouglasAlpha()` tests.
`@0x/contract-staking`: Add `tune()` tests.
This commit is contained in:
Lawrence Forman
2019-09-06 16:14:38 -04:00
parent b9d243e70e
commit 76c5517739
18 changed files with 783 additions and 121 deletions

View File

@@ -1,11 +1,11 @@
import { blockchainTests, expect, hexRandom } from '@0x/contracts-test-utils';
import { blockchainTests, expect, hexRandom, Numberish } from '@0x/contracts-test-utils';
import { BigNumber, FixedMathRevertErrors } from '@0x/utils';
import { Decimal } from 'decimal.js';
import * as _ from 'lodash';
import { artifacts, TestLibFixedMathContract } from '../src/';
import { assertRoughlyEquals, fromFixed, Numberish, toDecimal, toFixed } from './utils/number_utils';
import { assertRoughlyEquals, fromFixed, toDecimal, toFixed } from './utils/number_utils';
blockchainTests('LibFixedMath', env => {
let testContract: TestLibFixedMathContract;