File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
ironfish-cli/src/multisigBroker/sessionManagers Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 2
2
* License, v. 2.0. If a copy of the MPL was not distributed with this
3
3
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
4
import { Assert , Logger , PromiseUtils } from '@ironfish/sdk'
5
+ import { ux } from '@oclif/core'
5
6
import { MultisigClient } from '../clients'
6
7
import { MultisigBrokerUtils } from '../utils'
7
8
@@ -44,6 +45,9 @@ export abstract class MultisigClientSessionManager extends MultisigSessionManage
44
45
protected async connect ( ) : Promise < void > {
45
46
let confirmed = false
46
47
48
+ ux . action . start (
49
+ `Connecting to multisig broker server: ${ this . client . hostname } :${ this . client . port } ` ,
50
+ )
47
51
this . client . start ( )
48
52
49
53
this . client . onConnectedMessage . on ( ( ) => {
@@ -55,6 +59,7 @@ export abstract class MultisigClientSessionManager extends MultisigSessionManage
55
59
}
56
60
57
61
this . client . onConnectedMessage . clear ( )
62
+ ux . action . stop ( )
58
63
}
59
64
60
65
async joinSession ( sessionId : string ) : Promise < void > {
You can’t perform that action at this time.
0 commit comments