Skip to content

Commit

Permalink
fix: check type
Browse files Browse the repository at this point in the history
  • Loading branch information
RafilxTenfen committed Dec 24, 2024
1 parent 12ea69a commit f962e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/btc_rewards_distribution_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ func (s *BtcRewardsDistribution) Test5CheckRewardsFirstDelegations() {
s.Len(fps, 2)
s.Equal(fps[0].Commission.String(), fps[1].Commission.String())
for _, fp := range fps {
s.Equal(fp.SlashedBabylonHeight, 0)
s.Equal(fp.SlashedBtcHeight, 0)
s.Equal(fp.SlashedBabylonHeight, uint64(0))
s.Equal(fp.SlashedBtcHeight, uint32(0))
}

dels := n2.QueryFinalityProvidersDelegations(s.fp1.BtcPk.MarshalHex(), s.fp2.BtcPk.MarshalHex())
Expand Down

0 comments on commit f962e6c

Please sign in to comment.