aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-08-31 06:38:21 +0800
committerGitHub <noreply@github.com>2018-08-31 06:38:21 +0800
commit66eef758c6bbc1ee16fb44957d640662ee9f8e87 (patch)
tree13326c877854a5e7d84f7e640ef6d05757e4bfc7 /packages/contracts
parent580271380111d8ae357fed6af30d00ba4a281041 (diff)
parent80b7a7842ca56677a5ead4155587d63153042afc (diff)
downloaddexon-sol-tools-66eef758c6bbc1ee16fb44957d640662ee9f8e87.tar
dexon-sol-tools-66eef758c6bbc1ee16fb44957d640662ee9f8e87.tar.gz
dexon-sol-tools-66eef758c6bbc1ee16fb44957d640662ee9f8e87.tar.bz2
dexon-sol-tools-66eef758c6bbc1ee16fb44957d640662ee9f8e87.tar.lz
dexon-sol-tools-66eef758c6bbc1ee16fb44957d640662ee9f8e87.tar.xz
dexon-sol-tools-66eef758c6bbc1ee16fb44957d640662ee9f8e87.tar.zst
dexon-sol-tools-66eef758c6bbc1ee16fb44957d640662ee9f8e87.zip
Merge pull request #1047 from 0xProject/feature/re-add-no-unused-variables
Re-add no-unused-variable tslint rule
Diffstat (limited to 'packages/contracts')
-rw-r--r--packages/contracts/test/exchange/internal.ts5
-rw-r--r--packages/contracts/test/exchange/signature_validator.ts2
2 files changed, 2 insertions, 5 deletions
diff --git a/packages/contracts/test/exchange/internal.ts b/packages/contracts/test/exchange/internal.ts
index dc2c5fbe0..156e086af 100644
--- a/packages/contracts/test/exchange/internal.ts
+++ b/packages/contracts/test/exchange/internal.ts
@@ -6,10 +6,7 @@ import * as _ from 'lodash';
import { TestExchangeInternalsContract } from '../../generated_contract_wrappers/test_exchange_internals';
import { artifacts } from '../utils/artifacts';
-import {
- getInvalidOpcodeErrorMessageForCallAsync,
- getRevertReasonOrErrorMessageForSendTransactionAsync,
-} from '../utils/assertions';
+import { getRevertReasonOrErrorMessageForSendTransactionAsync } from '../utils/assertions';
import { chaiSetup } from '../utils/chai_setup';
import { bytes32Values, testCombinatoriallyWithReferenceFuncAsync, uint256Values } from '../utils/combinatorial_utils';
import { constants } from '../utils/constants';
diff --git a/packages/contracts/test/exchange/signature_validator.ts b/packages/contracts/test/exchange/signature_validator.ts
index b25483c4b..5cc62e777 100644
--- a/packages/contracts/test/exchange/signature_validator.ts
+++ b/packages/contracts/test/exchange/signature_validator.ts
@@ -14,7 +14,7 @@ import { ValidatorContract } from '../../generated_contract_wrappers/validator';
import { WalletContract } from '../../generated_contract_wrappers/wallet';
import { addressUtils } from '../utils/address_utils';
import { artifacts } from '../utils/artifacts';
-import { expectContractCallFailedAsync, expectContractCallFailedWithoutReasonAsync } from '../utils/assertions';
+import { expectContractCallFailedAsync } from '../utils/assertions';
import { chaiSetup } from '../utils/chai_setup';
import { constants } from '../utils/constants';
import { LogDecoder } from '../utils/log_decoder';