From 705fd84e125179e582635d8a48fa96b20a144ec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Fari=C3=B1a?= Date: Mon, 22 Mar 2021 17:25:32 -0300 Subject: [PATCH] style: indentation fixes --- src/common/wallet/btccoin.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/wallet/btccoin.js b/src/common/wallet/btccoin.js index 23124a130..f3018f401 100644 --- a/src/common/wallet/btccoin.js +++ b/src/common/wallet/btccoin.js @@ -27,7 +27,7 @@ export default class Coin { this.path = `m/44'/${this.coinType}'/${this.account}'/0/0`; } - deriveSegwit= (root, network) => { + deriveSegwit = (root, network) => { const path = `m/84'/${this.coinType}'/${this.account}'/0/0`; const keyPair = root.derivePath(path); const { address } = payments.p2wpkh({ pubkey: keyPair.publicKey, network }); @@ -119,9 +119,9 @@ export default class Coin { address, chain, type, symbol, } = this; return address === json.address - && chain === json.chain - && type === json.type - && symbol === json.symbol; + && chain === json.chain + && type === json.type + && symbol === json.symbol; } /**