We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 893dc03 commit dbf9290Copy full SHA for dbf9290
src/infrastructure/Listener.ts
@@ -291,7 +291,13 @@ export class Listener implements IListener {
291
filter((_) => _.message instanceof AggregateTransaction),
292
map((_) => _.message as AggregateTransaction),
293
filter((_) => this.transactionFromAddress(_, address)),
294
- filter((_) => transactionHash === undefined || _.transactionInfo!.hash === transactionHash),
+ filter((_) => {
295
+ if (transactionHash === undefined) {
296
+ return true;
297
+ } else {
298
+ const metaHash = _.transactionInfo!.hash;
299
+ return metaHash !== undefined ? metaHash.toUpperCase() === transactionHash.toUpperCase() : false;
300
+ }}),
301
);
302
}
303
0 commit comments