Skip to content

Commit c547dd2

Browse files
committed
Added #352 aggregate bonded announcing
1 parent 81ff792 commit c547dd2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/service/TransactionService.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,15 @@ export class TransactionService implements ITransactionService {
4242

4343
private readonly transactionHttp: TransactionHttp;
4444
private readonly receiptHttp: ReceiptHttp;
45+
private readonly listener: Listener;
4546
/**
4647
* Constructor
4748
* @param url Base catapult-rest url
4849
*/
4950
constructor(url: string) {
5051
this.transactionHttp = new TransactionHttp(url);
5152
this.receiptHttp = new ReceiptHttp(url);
53+
this.listener = new Listener(url);
5254
}
5355

5456
/**

0 commit comments

Comments
 (0)