diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-30 15:55:15 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-30 15:55:15 +0800 |
commit | b21779999fbcae105b00265a4ce481388ffafcfc (patch) | |
tree | eeb0979f73d39b71e03e25eb6d9658731ec0e4f0 | |
parent | f3d5690d56c3e4c7243f72049c98cfde799413af (diff) | |
parent | ec379cc3504ff0f6e8a6213bbb79fbd60734e993 (diff) | |
download | dexon-sol-tools-b21779999fbcae105b00265a4ce481388ffafcfc.tar dexon-sol-tools-b21779999fbcae105b00265a4ce481388ffafcfc.tar.gz dexon-sol-tools-b21779999fbcae105b00265a4ce481388ffafcfc.tar.bz2 dexon-sol-tools-b21779999fbcae105b00265a4ce481388ffafcfc.tar.lz dexon-sol-tools-b21779999fbcae105b00265a4ce481388ffafcfc.tar.xz dexon-sol-tools-b21779999fbcae105b00265a4ce481388ffafcfc.tar.zst dexon-sol-tools-b21779999fbcae105b00265a4ce481388ffafcfc.zip |
Merge branch 'removeSrcFilesNotUsedByTests' into tokenRegistry
-rw-r--r-- | src/web3_wrapper.ts | 2 | ||||
-rw-r--r-- | test/exchange_wrapper.ts (renamed from test/contract_wrapper_test.ts) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/web3_wrapper.ts b/src/web3_wrapper.ts index 3b460e4da..97d04db8c 100644 --- a/src/web3_wrapper.ts +++ b/src/web3_wrapper.ts @@ -50,7 +50,7 @@ export class Web3Wrapper { public async doesContractExistAtAddressAsync(address: string): Promise<boolean> { const code = await promisify(this.web3.eth.getCode)(address); // Regex matches 0x0, 0x00, 0x in order to accomodate poorly implemented clients - const zeroHexAddressRegex = /^0x0\{0,40\}$/i; + const zeroHexAddressRegex = /^0x0*$/i; const didFindCode = _.isNull(code.match(zeroHexAddressRegex)); return didFindCode; } diff --git a/test/contract_wrapper_test.ts b/test/exchange_wrapper.ts index 4bfc49374..4bfc49374 100644 --- a/test/contract_wrapper_test.ts +++ b/test/exchange_wrapper.ts |