diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-10-04 16:47:48 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-10-04 16:48:53 +0800 |
commit | f26d49f077a9a8b606159f22c05aaf2601dc8f57 (patch) | |
tree | 09678778cd794f8edc080a358162f2d67495cc86 /src | |
parent | ad7ce6c91640c0cb475b6baa3118d0ba8d8f8a46 (diff) | |
download | dexon-sol-tools-f26d49f077a9a8b606159f22c05aaf2601dc8f57.tar dexon-sol-tools-f26d49f077a9a8b606159f22c05aaf2601dc8f57.tar.gz dexon-sol-tools-f26d49f077a9a8b606159f22c05aaf2601dc8f57.tar.bz2 dexon-sol-tools-f26d49f077a9a8b606159f22c05aaf2601dc8f57.tar.lz dexon-sol-tools-f26d49f077a9a8b606159f22c05aaf2601dc8f57.tar.xz dexon-sol-tools-f26d49f077a9a8b606159f22c05aaf2601dc8f57.tar.zst dexon-sol-tools-f26d49f077a9a8b606159f22c05aaf2601dc8f57.zip |
Use Noop instead of NoOp
Diffstat (limited to 'src')
-rw-r--r-- | src/0x.ts | 6 | ||||
-rw-r--r-- | src/utils/abi_decoder.ts | 2 |
2 files changed, 5 insertions, 3 deletions
@@ -307,8 +307,10 @@ export class ZeroEx { const transactionReceipt = await this._web3Wrapper.getTransactionReceiptAsync(txHash); if (!_.isNull(transactionReceipt)) { intervalUtils.clearAsyncExcludingInterval(intervalId); - const tryToDecodeLogOrNoOp = this._abiDecoder.tryToDecodeLogOrNoOp.bind(this._abiDecoder); - const logsWithDecodedArgs = _.map(transactionReceipt.logs, tryToDecodeLogOrNoOp); + const logsWithDecodedArgs = _.map( + transactionReceipt.logs, + this._abiDecoder.tryToDecodeLogOrNoop.bind(this._abiDecoder), + ); const transactionReceiptWithDecodedLogArgs: TransactionReceiptWithDecodedLogs = { ...transactionReceipt, logs: logsWithDecodedArgs, diff --git a/src/utils/abi_decoder.ts b/src/utils/abi_decoder.ts index 2b420bd1f..75d78629c 100644 --- a/src/utils/abi_decoder.ts +++ b/src/utils/abi_decoder.ts @@ -10,7 +10,7 @@ export class AbiDecoder { constructor(abiArrays: Web3.AbiDefinition[][]) { _.map(abiArrays, this.addABI.bind(this)); } - public tryToDecodeLogOrNoOp(log: Web3.LogEntry): LogWithDecodedArgs|RawLog { + public tryToDecodeLogOrNoop(log: Web3.LogEntry): LogWithDecodedArgs|RawLog { const methodId = log.topics[0]; const event = this.methodIds[methodId]; if (_.isUndefined(event)) { |