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 81ff792 commit c547dd2Copy full SHA for c547dd2
src/service/TransactionService.ts
@@ -42,13 +42,15 @@ export class TransactionService implements ITransactionService {
42
43
private readonly transactionHttp: TransactionHttp;
44
private readonly receiptHttp: ReceiptHttp;
45
+ private readonly listener: Listener;
46
/**
47
* Constructor
48
* @param url Base catapult-rest url
49
*/
50
constructor(url: string) {
51
this.transactionHttp = new TransactionHttp(url);
52
this.receiptHttp = new ReceiptHttp(url);
53
+ this.listener = new Listener(url);
54
}
55
56
0 commit comments