File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
packages/bitcore-wallet-service/src/lib Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -149,5 +149,5 @@ module.exports = {
149
149
150
150
BE_KEY_SALT : 'bws-auth-keysalt' ,
151
151
152
- BROADCAST_RETRY_TIME : 350 , //ms
152
+ BROADCAST_RETRY_TIME : 350 , // ms
153
153
} ;
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export interface IWalletService {
66
66
copayerId : string ;
67
67
appName : string ;
68
68
appVersion : string ;
69
- parsedClientVersion : { agent : number ; major : number ; minor : number } ;
69
+ parsedClientVersion : { agent : number ; major : number ; minor : number ; } ;
70
70
clientVersion : string ;
71
71
copayerIsSupportStaff : boolean ;
72
72
}
@@ -487,8 +487,8 @@ export class WalletService {
487
487
return cb ( new ClientError ( 'Invalid network' ) ) ;
488
488
}
489
489
490
- const derivationStrategy = Constants . DERIVATION_STRATEGIES . BIP44
491
- const addressType = opts . n === 1
490
+ const derivationStrategy = Constants . DERIVATION_STRATEGIES . BIP44 ;
491
+ const addressType = opts . n === 1
492
492
? Constants . SCRIPT_TYPES . P2PKH
493
493
: Constants . SCRIPT_TYPES . P2SH ;
494
494
@@ -1077,7 +1077,6 @@ export class WalletService {
1077
1077
) ;
1078
1078
}
1079
1079
1080
-
1081
1080
const hash = WalletService . _getCopayerHash (
1082
1081
opts . name ,
1083
1082
opts . xPubKey ,
@@ -4384,7 +4383,7 @@ export class WalletService {
4384
4383
addresses . push ( addr ) ;
4385
4384
i ++ ;
4386
4385
}
4387
- //this.logi(i + ' addresses were added.');
4386
+ // this.logi(i + ' addresses were added.');
4388
4387
}
4389
4388
4390
4389
this . _store ( wallet , addresses , next ) ;
You can’t perform that action at this time.
0 commit comments