Fix remaining imports

This commit is contained in:
fabioberger
2019-11-12 10:13:25 +00:00
parent 6324a92ec5
commit 30d54407e6
12 changed files with 15 additions and 13 deletions

View File

@@ -17,8 +17,8 @@ import {
ZrxVaultContract,
} from '../wrappers';
import { constants as stakingConstants } from './constants';
import { DecodedLogs, EndOfEpochInfo, StakingParams } from './types';
import { constants as stakingConstants } from '../../src/constants';
import { DecodedLogs, EndOfEpochInfo, StakingParams } from '../../src/types';
export class StakingApiWrapper {
// The address of the real Staking.sol contract

View File

@@ -3,12 +3,12 @@ import { BigNumber } from '@0x/utils';
import { DecodedLogEntry, TransactionReceiptWithDecodedLogs } from 'ethereum-types';
import * as _ from 'lodash';
import { DecodedLogs, StakeInfo, StakeStatus } from '../../src/types';
import { artifacts } from '../artifacts';
import { TestCumulativeRewardTrackingContract, TestCumulativeRewardTrackingEvents } from '../wrappers';
import { StakingApiWrapper } from './api_wrapper';
import { toBaseUnitAmount } from './number_utils';
import { DecodedLogs, StakeInfo, StakeStatus } from './types';
export enum TestAction {
Finalize,