File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ export class Listener {
249249 filter ( ( _ ) => _ . message instanceof Transaction ) ,
250250 map ( ( _ ) => _ . message as Transaction ) ,
251251 filter ( ( _ ) => this . transactionFromAddress ( _ , address ) ) ,
252- filter ( ( _ ) => _ . transactionInfo ! . hash === transactionHash || transactionHash === undefined ) ,
252+ filter ( ( _ ) => transactionHash === undefined || _ . transactionInfo ! . hash === transactionHash ) ,
253253 ) ;
254254 }
255255
@@ -302,7 +302,7 @@ export class Listener {
302302 filter ( ( _ ) => _ . message instanceof AggregateTransaction ) ,
303303 map ( ( _ ) => _ . message as AggregateTransaction ) ,
304304 filter ( ( _ ) => this . transactionFromAddress ( _ , address ) ) ,
305- filter ( ( _ ) => _ . transactionInfo ! . hash === transactionHash || transactionHash === undefined ) ,
305+ filter ( ( _ ) => transactionHash === undefined || _ . transactionInfo ! . hash === transactionHash ) ,
306306 ) ;
307307 }
308308
You can’t perform that action at this time.
0 commit comments