aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/0x.ts')
-rw-r--r--src/0x.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/0x.ts b/src/0x.ts
index ff3220757..bde9360c3 100644
--- a/src/0x.ts
+++ b/src/0x.ts
@@ -287,7 +287,7 @@ export class ZeroEx {
const logsWithDecodedArgs = _.map(transactionReceipt.logs, (log: Web3.LogEntry) => {
const decodedLog = this._abiDecoder.decodeLog(log);
if (_.isUndefined(decodedLog)) {
- throw new Error('Unknown log');
+ return log;
}
const logWithDecodedArgs: LogWithDecodedArgs = {
...log,