diff options
-rw-r--r-- | src/order_watcher/order_state_watcher.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/order_watcher/order_state_watcher.ts b/src/order_watcher/order_state_watcher.ts index dfa830402..4866f8409 100644 --- a/src/order_watcher/order_state_watcher.ts +++ b/src/order_watcher/order_state_watcher.ts @@ -117,6 +117,8 @@ export class OrderStateWatcher { if (!isLogDecoded) { return; // noop } + // Unfortunately blockNumber is returned as a hex-encoded string, so we + // convert it to a number here. const blockNumberBuff = ethUtil.toBuffer(maybeDecodedLog.blockNumber); const blockNumber = ethUtil.bufferToInt(blockNumberBuff); |