aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-05-31 22:15:16 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-05-31 22:15:16 +0800
commit1955e90bbbfeb7d2aeebfd84132f684d20e17400 (patch)
treee1863f864ad30b54f6032a7b5a0bf77ed4f39bab /src
parent7d29fb217445497d81ef62d0feb821c8e16ca88a (diff)
downloaddexon-sol-tools-1955e90bbbfeb7d2aeebfd84132f684d20e17400.tar
dexon-sol-tools-1955e90bbbfeb7d2aeebfd84132f684d20e17400.tar.gz
dexon-sol-tools-1955e90bbbfeb7d2aeebfd84132f684d20e17400.tar.bz2
dexon-sol-tools-1955e90bbbfeb7d2aeebfd84132f684d20e17400.tar.lz
dexon-sol-tools-1955e90bbbfeb7d2aeebfd84132f684d20e17400.tar.xz
dexon-sol-tools-1955e90bbbfeb7d2aeebfd84132f684d20e17400.tar.zst
dexon-sol-tools-1955e90bbbfeb7d2aeebfd84132f684d20e17400.zip
Fix linter errors
Diffstat (limited to 'src')
-rw-r--r--src/0x.js.ts2
-rw-r--r--src/types.ts2
-rw-r--r--src/web3_wrapper.ts4
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;