diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-10-06 18:09:14 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-10-06 18:09:14 +0800 |
commit | cfa75ed36c47a1180f338bf52c8c91544bcd8a9d (patch) | |
tree | 06fbcde8eb744a3e58ccad941c9768637738643b | |
parent | 498cf5333dbd6990d156926b80016bf4fc7b473c (diff) | |
download | dexon-sol-tools-cfa75ed36c47a1180f338bf52c8c91544bcd8a9d.tar dexon-sol-tools-cfa75ed36c47a1180f338bf52c8c91544bcd8a9d.tar.gz dexon-sol-tools-cfa75ed36c47a1180f338bf52c8c91544bcd8a9d.tar.bz2 dexon-sol-tools-cfa75ed36c47a1180f338bf52c8c91544bcd8a9d.tar.lz dexon-sol-tools-cfa75ed36c47a1180f338bf52c8c91544bcd8a9d.tar.xz dexon-sol-tools-cfa75ed36c47a1180f338bf52c8c91544bcd8a9d.tar.zst dexon-sol-tools-cfa75ed36c47a1180f338bf52c8c91544bcd8a9d.zip |
Add a comment
-rw-r--r-- | src/utils/filter_utils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/filter_utils.ts b/src/utils/filter_utils.ts index 2bd745815..c056467c7 100644 --- a/src/utils/filter_utils.ts +++ b/src/utils/filter_utils.ts @@ -43,6 +43,7 @@ export const filterUtils = { continue; } if (_.isUndefined(indexFilterValues[eventInput.name])) { + // Null is a wildcard topic in a JSON-RPC call topics.push(null); } else { const value = indexFilterValues[eventInput.name] as string; |