Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
csoreff committed Mar 11, 2024
1 parent c02e6de commit c3ca090
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/services/lite/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ export const calculateXTZTotal = (choices: Choice[] | undefined) => {
if (choices) {
choices.map((choice: Choice) => {
totalXTZ = choice.walletAddresses.reduce(
(total: BigNumber, walletAddress: WalletAddress) => total + new BigNumber(walletAddress.balanceAtReferenceBlock),
(total: BigNumber, walletAddress: WalletAddress) =>
total + new BigNumber(walletAddress.balanceAtReferenceBlock),
0
)
})
Expand Down

0 comments on commit c3ca090

Please sign in to comment.