diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-06-06 02:46:05 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-06-06 02:46:05 +0800 |
commit | 59cb2132f27c0c28a1e6077aaac320e485786e65 (patch) | |
tree | 882dda46b44061bfab57139d8d11d7652cb478c2 /packages/contracts/test/libraries | |
parent | 9778695b4ad1fd999eb79b01c768a2f2b9938917 (diff) | |
download | dexon-sol-tools-59cb2132f27c0c28a1e6077aaac320e485786e65.tar dexon-sol-tools-59cb2132f27c0c28a1e6077aaac320e485786e65.tar.gz dexon-sol-tools-59cb2132f27c0c28a1e6077aaac320e485786e65.tar.bz2 dexon-sol-tools-59cb2132f27c0c28a1e6077aaac320e485786e65.tar.lz dexon-sol-tools-59cb2132f27c0c28a1e6077aaac320e485786e65.tar.xz dexon-sol-tools-59cb2132f27c0c28a1e6077aaac320e485786e65.tar.zst dexon-sol-tools-59cb2132f27c0c28a1e6077aaac320e485786e65.zip |
Linter now passes
Diffstat (limited to 'packages/contracts/test/libraries')
-rw-r--r-- | packages/contracts/test/libraries/lib_bytes.ts | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/packages/contracts/test/libraries/lib_bytes.ts b/packages/contracts/test/libraries/lib_bytes.ts index 26cfa8291..c16b6f6bf 100644 --- a/packages/contracts/test/libraries/lib_bytes.ts +++ b/packages/contracts/test/libraries/lib_bytes.ts @@ -1,12 +1,8 @@ -import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils'; -import { AssetProxyId } from '@0xproject/types'; +import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BigNumber } from '@0xproject/utils'; -import { Web3Wrapper } from '@0xproject/web3-wrapper'; import BN = require('bn.js'); import * as chai from 'chai'; -import { LogWithDecodedArgs, TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import ethUtil = require('ethereumjs-util'); -import * as Web3 from 'web3'; import { TestLibBytesContract } from '../../src/contract_wrappers/generated/test_lib_bytes'; import { artifacts } from '../../src/utils/artifacts'; @@ -19,7 +15,6 @@ const expect = chai.expect; const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper); describe('LibBytes', () => { - let owner: string; let libBytes: TestLibBytesContract; const byteArrayShorterThan32Bytes = '0x012345'; const byteArrayShorterThan20Bytes = byteArrayShorterThan32Bytes; @@ -42,7 +37,6 @@ describe('LibBytes', () => { before(async () => { // Setup accounts & addresses const accounts = await web3Wrapper.getAvailableAddressesAsync(); - owner = accounts[0]; testAddress = accounts[1]; // Deploy LibBytes libBytes = await TestLibBytesContract.deployFrom0xArtifactAsync(artifacts.TestLibBytes, provider, txDefaults); |