Skip to content

Commit

Permalink
only set reward hash when reward has been paid out
Browse files Browse the repository at this point in the history
  • Loading branch information
eli-d committed Dec 14, 2023
1 parent f055fc4 commit 324e79a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cmd/microservice-user-transactions-aggregate/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,15 @@ func main() {
if existingUserTransaction.WinningAddress == "" && utility == "FLUID" {
existingUserTransaction.WinningAddress = winnerAddress
existingUserTransaction.WinningAmount = winningAmountFloat
existingUserTransaction.RewardHash = transactionHash
existingUserTransaction.UtilityName = utility
}

// a pending winner might have set other win info
// but it cannot set the reward hash
if existingUserTransaction.RewardHash == "" {
existingUserTransaction.RewardHash = transactionHash
}

existingUtility := existingUserTransaction.UtilityName

// update utility amount and name if unset
Expand Down Expand Up @@ -123,7 +128,6 @@ func main() {
if existingUserTransaction.WinningAddress == "" && utility == "FLUID" {
existingUserTransaction.WinningAddress = senderAddress
existingUserTransaction.WinningAmount = winningAmountFloat
existingUserTransaction.RewardHash = transactionHash
existingUserTransaction.UtilityName = utility
}

Expand Down

0 comments on commit 324e79a

Please sign in to comment.