Fix a bug when undefined was been tried to convert to an array
This commit is contained in:
@@ -5,6 +5,10 @@
|
||||
{
|
||||
"note": "Start jsonRpcRequestId at 1, not 0 as 0 breaks the web3.js websocket RPC provider",
|
||||
"pr": 1227
|
||||
},
|
||||
{
|
||||
"note":
|
||||
"Fix the bug when order watcher was trying to convert undefined to an object in case of CancelUpTo event"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
@@ -50,7 +50,7 @@ export class DependentOrderHashesTracker {
|
||||
return uniqueOrderHashList;
|
||||
}
|
||||
public getDependentOrderHashesByMaker(makerAddress: string): string[] {
|
||||
const dependentOrderHashes = Array.from(this._orderHashesByMakerAddress[makerAddress]);
|
||||
const dependentOrderHashes = Array.from(this._orderHashesByMakerAddress[makerAddress] || {});
|
||||
return dependentOrderHashes;
|
||||
}
|
||||
public getDependentOrderHashesByAssetDataByMaker(makerAddress: string, assetData: string): string[] {
|
||||
|
||||
Reference in New Issue
Block a user