Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
csoreff committed Mar 11, 2024
1 parent e685466 commit 3beb5a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/lite/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const calculateXTZTotal = (choices: Choice[] | undefined) => {
let totalXTZ = 0
if (choices) {
choices.map((choice: Choice) => {
totalXTZ += choice.walletAddresses.balanceAtReferenceBlock
totalXTZ = choice.walletAddresses.reduce((a, b) => a + b, 0);
})
}
return totalXTZ
Expand Down

0 comments on commit 3beb5a8

Please sign in to comment.