aboutsummaryrefslogtreecommitdiffstats
path: root/packages/utils/src
diff options
context:
space:
mode:
authorBryce <brycedneal@gmail.com>2018-06-23 07:56:19 +0800
committerBryce <brycedneal@gmail.com>2018-06-23 07:56:19 +0800
commit69625946b173737932060bfa1b3a6f25d2c3acdf (patch)
tree17333d210ee29605dbb68fc01e0292cbeea69b96 /packages/utils/src
parentf7fe9b096115312f25f90a27a8f9e13e374dcc2b (diff)
downloaddexon-sol-tools-69625946b173737932060bfa1b3a6f25d2c3acdf.tar
dexon-sol-tools-69625946b173737932060bfa1b3a6f25d2c3acdf.tar.gz
dexon-sol-tools-69625946b173737932060bfa1b3a6f25d2c3acdf.tar.bz2
dexon-sol-tools-69625946b173737932060bfa1b3a6f25d2c3acdf.tar.lz
dexon-sol-tools-69625946b173737932060bfa1b3a6f25d2c3acdf.tar.xz
dexon-sol-tools-69625946b173737932060bfa1b3a6f25d2c3acdf.tar.zst
dexon-sol-tools-69625946b173737932060bfa1b3a6f25d2c3acdf.zip
Typings and comment
Diffstat (limited to 'packages/utils/src')
-rw-r--r--packages/utils/src/abi_decoder.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/utils/src/abi_decoder.ts b/packages/utils/src/abi_decoder.ts
index 1f805c2f1..390423644 100644
--- a/packages/utils/src/abi_decoder.ts
+++ b/packages/utils/src/abi_decoder.ts
@@ -37,6 +37,11 @@ export class AbiDecoder {
decodedData = ethersInterface.events[event.name].parse(log.data);
} catch (error) {
if (error.code === ethers.errors.INVALID_ARGUMENT) {
+ // Because we index events by Method ID, and Method IDs are derived from the method
+ // name and the input parameters, it's possible that the return value of the event
+ // does not match our ABI. If that's the case, then ethers will throw an error
+ // when we try to parse the event. We handle that case here by returning the log rather
+ // than throwing an error.
return log;
}
throw error;