fix CI failures

This commit is contained in:
Michael Zhu
2019-12-09 22:15:30 -08:00
parent 865a2b1fb0
commit 2f9891f0aa
5 changed files with 5 additions and 20 deletions

View File

@@ -45,7 +45,6 @@ export { StakingRevertErrors, FixedMathRevertErrors } from '@0x/utils';
export { constants } from './constants';
export {
AggregatedStats,
AggregatedStatsByEpoch,
StakeInfo,
StakeStatus,
StoredBalance,
@@ -57,6 +56,7 @@ export {
GlobalStakeByStatus,
StakingPool,
PoolStats,
Numberish,
} from './types';
export {
ContractArtifact,

View File

@@ -231,3 +231,5 @@ export class AggregatedStats {
export interface AggregatedStatsByEpoch {
[epoch: string]: AggregatedStats;
}
export type Numberish = Numberish;

View File

@@ -7,7 +7,7 @@ import {
toDecimal,
toFixed,
} from '@0x/contracts-test-utils';
import { BigNumber, FixedMathRevertErrors } from '@0x/utils';
import { BigNumber, FixedMathRevertErrors, hexUtils } from '@0x/utils';
import { Decimal } from 'decimal.js';
import * as _ from 'lodash';