Skip to content

Commit

Permalink
Reduce rewards generation timeout a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Dec 15, 2024
1 parent 8c9f8a1 commit 060979e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/bcd_consumer_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ func (s *BCDConsumerIntegrationTestSuite) Test6ConsumerFPRewardsGeneration() {
return false
}
return true
}, time.Minute, time.Second*5)
}, 30*time.Second, time.Second*5)

// Once the vote is cast, ensure the block is finalised
finalizedBlock, err := s.cosmwasmController.QueryIndexedBlock(uint64(czActivatedHeight))
Expand All @@ -354,7 +354,7 @@ func (s *BCDConsumerIntegrationTestSuite) Test6ConsumerFPRewardsGeneration() {
}
fmt.Println("Consumer rewards: ", rewards)
return true
}, time.Minute, time.Second*5)
}, 30*time.Second, time.Second*5)
}

// Test7BabylonFPCascadedSlashing
Expand Down

0 comments on commit 060979e

Please sign in to comment.