Use @0xproject/utils promisify everywhere

This commit is contained in:
Fabio Berger
2018-04-03 12:03:59 +09:00
parent 9ce03e3515
commit 8281be235c
7 changed files with 4 additions and 8 deletions

View File

@@ -1,10 +1,10 @@
import { JSONRPCResponsePayload } from '@0xproject/types';
import { promisify } from '@0xproject/utils';
import Eth from '@ledgerhq/hw-app-eth';
// HACK: This depdency is optional and tslint skips optional depdencies
// tslint:disable-next-line:no-implicit-dependencies
import TransportNodeHid from '@ledgerhq/hw-transport-node-hid';
import * as chai from 'chai';
import promisify = require('es6-promisify');
import * as ethUtils from 'ethereumjs-util';
import * as _ from 'lodash';
import Web3 = require('web3');