From eff510b46ad2f55129fa3b2eeec473f83a3803bc Mon Sep 17 00:00:00 2001 From: cdc-Hitesh Date: Wed, 16 Jun 2021 14:48:11 +0530 Subject: [PATCH] #278 - Eslint fixes --- lib/src/transaction/msg/bank/msgsend.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/transaction/msg/bank/msgsend.ts b/lib/src/transaction/msg/bank/msgsend.ts index 65625223..9c899fdb 100644 --- a/lib/src/transaction/msg/bank/msgsend.ts +++ b/lib/src/transaction/msg/bank/msgsend.ts @@ -65,7 +65,7 @@ export const msgSend = function (config: InitConfigurations) { return new MsgSend({ fromAddress: parsedMsg.from_address, toAddress: parsedMsg.to_address, - amount: parsedMsg.amount.map(coin => cro.Coin.fromCustomAmountDenom(coin.amount, coin.denom)), + amount: parsedMsg.amount.map((coin) => cro.Coin.fromCustomAmountDenom(coin.amount, coin.denom)), }); } @@ -79,7 +79,7 @@ export const msgSend = function (config: InitConfigurations) { value: { fromAddress: this.fromAddress, toAddress: this.toAddress, - amount: this.amount.map(coin => coin.toCosmosCoin()), + amount: this.amount.map((coin) => coin.toCosmosCoin()), }, }; } @@ -91,7 +91,7 @@ export const msgSend = function (config: InitConfigurations) { value: { from_address: this.fromAddress, to_address: this.toAddress, - amount: this.amount.map(coin => coin.toCosmosCoin()), + amount: this.amount.map((coin) => coin.toCosmosCoin()), }, } as legacyAmino.MsgSend; }