diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/0x.js.ts | 2 | ||||
-rw-r--r-- | src/types.ts | 2 | ||||
-rw-r--r-- | src/web3_wrapper.ts | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts index 63a540ad4..25b4af777 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -18,7 +18,7 @@ import {ecSignatureSchema} from './schemas/ec_signature_schema'; import {TokenWrapper} from './contract_wrappers/token_wrapper'; import {SolidityTypes, ECSignature, ZeroExError} from './types'; import {Order} from './types'; -import {orderSchema} from "./schemas/signed_order_schema"; +import {orderSchema} from './schemas/signed_order_schema'; const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; diff --git a/src/types.ts b/src/types.ts index 861df3187..b70afe298 100644 --- a/src/types.ts +++ b/src/types.ts @@ -83,7 +83,7 @@ export enum ExchangeContractErrs { ERROR_FILL_BALANCE_ALLOWANCE, // Insufficient balance or allowance for token transfer ERROR_CANCEL_EXPIRED, // Order has already expired ERROR_CANCEL_NO_VALUE, // Order has already been fully filled or cancelled -}; +} export interface ContractResponse { logs: ContractEvent[]; diff --git a/src/web3_wrapper.ts b/src/web3_wrapper.ts index 361f28476..79fd166ec 100644 --- a/src/web3_wrapper.ts +++ b/src/web3_wrapper.ts @@ -2,8 +2,8 @@ import * as _ from 'lodash'; import * as Web3 from 'web3'; import * as BigNumber from 'bignumber.js'; import promisify = require('es6-promisify'); -import {ZeroExError} from "./types"; -import {assert} from "./utils/assert"; +import {ZeroExError} from './types'; +import {assert} from './utils/assert'; export class Web3Wrapper { private web3: Web3; |