@@ -22,7 +22,6 @@ import { CosignatureSignedTransaction } from '../model/transaction/CosignatureSi
2222import { Transaction } from '../model/transaction/Transaction' ;
2323import { TransactionStatusError } from '../model/transaction/TransactionStatusError' ;
2424
25-
2625/**
2726 * Listener service
2827 */
@@ -53,7 +52,7 @@ export interface IListener {
5352 *
5453 * @return an observable stream of BlockInfo
5554 */
56- newBlock ( ) : Observable < BlockInfo >
55+ newBlock ( ) : Observable < BlockInfo > ;
5756
5857 /**
5958 * Returns an observable stream of Transaction for a specific address.
@@ -68,13 +67,13 @@ export interface IListener {
6867 confirmed ( address : Address , transactionHash ?: string ) : Observable < Transaction > ;
6968
7069 /**
71- * Returns an observable stream of Transaction for a specific address.
72- * Each time a transaction is in unconfirmed state an it involves the address,
73- * it emits a new Transaction in the event stream.
74- *
75- * @param address address we listen when a transaction is in unconfirmed state
76- * @return an observable stream of Transaction with state unconfirmed
77- */
70+ * Returns an observable stream of Transaction for a specific address.
71+ * Each time a transaction is in unconfirmed state an it involves the address,
72+ * it emits a new Transaction in the event stream.
73+ *
74+ * @param address address we listen when a transaction is in unconfirmed state
75+ * @return an observable stream of Transaction with state unconfirmed
76+ */
7877 unconfirmedAdded ( address : Address ) : Observable < Transaction > ;
7978
8079 /**
@@ -96,7 +95,7 @@ export interface IListener {
9695 * @param transactionHash transactionHash for filtering multiple transactions
9796 * @return an observable stream of AggregateTransaction with missing signatures state
9897 */
99- aggregateBondedAdded ( address : Address , transactionHash ?: string ) : Observable < AggregateTransaction >
98+ aggregateBondedAdded ( address : Address , transactionHash ?: string ) : Observable < AggregateTransaction > ;
10099
101100 /**
102101 * Returns an observable stream of Transaction Hashes for specific address.
@@ -106,7 +105,7 @@ export interface IListener {
106105 * @param address address we listen when a transaction is confirmed or rejected
107106 * @return an observable stream of Strings with the transaction hash
108107 */
109- aggregateBondedRemoved ( address : Address ) : Observable < string >
108+ aggregateBondedRemoved ( address : Address ) : Observable < string > ;
110109
111110 /**
112111 * Returns an observable stream of {@link TransactionStatusError} for specific address.
0 commit comments