Skip to content

Commit f5f42cf

Browse files
committed
Fix prettier
1 parent 0aeb2ca commit f5f42cf

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/providers/address/address.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ export class AddressProvider {
6868
origCoin,
6969
origAddress: address,
7070
resultCoin,
71-
resultAddress: resultCoin == 'bch' ? resultAddress.toLegacyAddress() : resultAddress.toString()
71+
resultAddress:
72+
resultCoin == 'bch'
73+
? resultAddress.toLegacyAddress()
74+
: resultAddress.toString()
7275
};
7376
}
7477

@@ -151,7 +154,6 @@ export class AddressProvider {
151154
if (isUriValid) {
152155
uri = new URICash(address);
153156
isAddressValidLivenet = AddressCash.isValid(
154-
155157
// this should work with Copay legacy or CashAddr formats.
156158
uri.address.toString(),
157159
'livenet'

src/providers/incoming-data/incoming-data.spec.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -333,9 +333,7 @@ describe('Provider: Incoming Data Provider', () => {
333333
);
334334

335335
// bch testnet legacy, prefixed address are handled as normal addresses
336-
expect(loggerSpy).toHaveBeenCalledWith(
337-
'Incoming-data: Bitcoin Cash URI'
338-
);
336+
expect(loggerSpy).toHaveBeenCalledWith('Incoming-data: Bitcoin Cash URI');
339337

340338
let parsed = bwcProvider
341339
.getBitcore()

src/providers/tx-format/tx-format.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ export class TxFormatProvider {
3636
}
3737

3838
public toLegacyAddress(address: string): string {
39-
let legacyAddr: string = this.bitcoreCash.Address(address).toLegacyAddress();
39+
let legacyAddr: string = this.bitcoreCash
40+
.Address(address)
41+
.toLegacyAddress();
4042
return legacyAddr;
4143
}
4244

0 commit comments

Comments
 (0)