Ran linter

This commit is contained in:
Greg Hysen
2019-03-07 09:11:26 -08:00
parent fea5a39740
commit e1c1878130
4 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ import { BigNumber } from '@0x/utils';
import * as chai from 'chai';
import { LogWithDecodedArgs } from 'ethereum-types';
import { ApprovalFactory, artifacts, constants, exchangeDataEncoder, CoordinatorContract } from '../src';
import { ApprovalFactory, artifacts, constants, CoordinatorContract, exchangeDataEncoder } from '../src';
chaiSetup.configure();
const expect = chai.expect;

View File

@@ -17,10 +17,10 @@ import {
ApprovalFactory,
artifacts,
constants,
exchangeDataEncoder,
hashUtils,
CoordinatorSignatureType,
CoordinatorTransactionFactory,
exchangeDataEncoder,
hashUtils,
TestMixinsContract,
} from '../src';

View File

@@ -2,7 +2,7 @@ import { SignedZeroExTransaction } from '@0x/types';
import { BigNumber } from '@0x/utils';
import * as ethUtil from 'ethereumjs-util';
import { hashUtils, SignedCoordinatorApproval, signingUtils, CoordinatorSignatureType } from './index';
import { CoordinatorSignatureType, hashUtils, SignedCoordinatorApproval, signingUtils } from './index';
export class ApprovalFactory {
private readonly _privateKey: Buffer;

View File

@@ -2,7 +2,7 @@ import { generatePseudoRandomSalt } from '@0x/order-utils';
import { SignedZeroExTransaction } from '@0x/types';
import * as ethUtil from 'ethereumjs-util';
import { hashUtils, signingUtils, CoordinatorSignatureType } from './index';
import { CoordinatorSignatureType, hashUtils, signingUtils } from './index';
export class CoordinatorTransactionFactory {
private readonly _signerBuff: Buffer;