diff options
-rw-r--r-- | src/ts/web3_wrapper.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ts/web3_wrapper.ts b/src/ts/web3_wrapper.ts index 2f082c9ac..24938e396 100644 --- a/src/ts/web3_wrapper.ts +++ b/src/ts/web3_wrapper.ts @@ -54,8 +54,6 @@ export class Web3Wrapper { const didFindCode = _.isNull(code.match(zeroHexAddressRegex)); return didFindCode; } - // Note: since `sign` is overloaded to be both a sync and async method, it doesn't play nice - // with our callAsync method. We therefore handle it here as a special case. public async signTransactionAsync(address: string, message: string): Promise<string> { const signData = await promisify(this.web3.eth.sign)(address, message); return signData; |