Skip to content

Commit

Permalink
fix: check num pub rand
Browse files Browse the repository at this point in the history
  • Loading branch information
RafilxTenfen committed Jan 30, 2025
1 parent 0c17d55 commit b3b8f67
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 @@ -263,9 +263,9 @@ func (s *BtcRewardsDistribution) Test4CommitPublicRandomnessAndSealed() {
n2.WaitForNextBlock()

fp1CommitPubRand := n1.QueryListPubRandCommit(fp1CommitPubRandList.FpBtcPk)
s.Require().Equal(fp1CommitPubRand[commitStartHeight], numPubRand)
s.Require().Equal(fp1CommitPubRand[commitStartHeight].NumPubRand, numPubRand)
fp2CommitPubRand := n2.QueryListPubRandCommit(fp2CommitPubRandList.FpBtcPk)
s.Require().Equal(fp2CommitPubRand[commitStartHeight], numPubRand)
s.Require().Equal(fp2CommitPubRand[commitStartHeight].NumPubRand, numPubRand)

n1.WaitUntilCurrentEpochIsSealedAndFinalized(1)

Expand Down

0 comments on commit b3b8f67

Please sign in to comment.