Skip to content

Commit

Permalink
AddCommittedToken was edited to avoid amount duplicate on Lockup
Browse files Browse the repository at this point in the history
  • Loading branch information
fenriz07 committed Apr 30, 2024
1 parent 2c170e8 commit 62db5c6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 0 additions & 1 deletion x/commitment/types/commitments.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ func (c *Commitments) AddCommittedTokens(denom string, amount math.Int, unlockTi
li++
continue
} else if lockup.UnlockTimestamp == unlockTime {
c.CommittedTokens[i].Lockups[li].Amount = lockup.Amount.Add(amount)
return
} else {
break
Expand Down
9 changes: 9 additions & 0 deletions x/commitment/types/commitments_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ func TestCommitments_AddCommittedTokens(t *testing.T) {
require.Equal(t, commitments.CommittedTokens[0].Lockups[0].Amount.String(), "100")
require.Equal(t, commitments.CommittedTokens[0].Lockups[0].UnlockTimestamp, uint64(100))
require.Len(t, commitments.CommittedTokens[1].Lockups, 1)

commitments.AddCommittedTokens("lp/3", sdk.NewInt(1000), 100)
commitments.AddCommittedTokens("lp/3", sdk.NewInt(2000), 120)
commitments.AddCommittedTokens("lp/3", sdk.NewInt(3000), 130)

require.Equal(t, commitments.CommittedTokens[2].Lockups[0].Amount.String(), "1000")
require.Equal(t, commitments.CommittedTokens[2].Lockups[1].Amount.String(), "2000")
require.Equal(t, commitments.CommittedTokens[2].Lockups[2].Amount.String(), "3000")

}

func TestCommitments_WithdrawCommitedTokens(t *testing.T) {
Expand Down

0 comments on commit 62db5c6

Please sign in to comment.