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 = {
149149
150150 BE_KEY_SALT : 'bws-auth-keysalt' ,
151151
152- BROADCAST_RETRY_TIME : 350 , //ms
152+ BROADCAST_RETRY_TIME : 350 , // ms
153153} ;
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export interface IWalletService {
6666 copayerId : string ;
6767 appName : string ;
6868 appVersion : string ;
69- parsedClientVersion : { agent : number ; major : number ; minor : number } ;
69+ parsedClientVersion : { agent : number ; major : number ; minor : number ; } ;
7070 clientVersion : string ;
7171 copayerIsSupportStaff : boolean ;
7272}
@@ -487,8 +487,8 @@ export class WalletService {
487487 return cb ( new ClientError ( 'Invalid network' ) ) ;
488488 }
489489
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
492492 ? Constants . SCRIPT_TYPES . P2PKH
493493 : Constants . SCRIPT_TYPES . P2SH ;
494494
@@ -1077,7 +1077,6 @@ export class WalletService {
10771077 ) ;
10781078 }
10791079
1080-
10811080 const hash = WalletService . _getCopayerHash (
10821081 opts . name ,
10831082 opts . xPubKey ,
@@ -4384,7 +4383,7 @@ export class WalletService {
43844383 addresses . push ( addr ) ;
43854384 i ++ ;
43864385 }
4387- //this.logi(i + ' addresses were added.');
4386+ // this.logi(i + ' addresses were added.');
43884387 }
43894388
43904389 this . _store ( wallet , addresses , next ) ;
You can’t perform that action at this time.
0 commit comments