Skip to content

Commit

Permalink
fix blockstream fee tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Revantark committed Jul 25, 2024
1 parent fe23a4a commit 8b563e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions btc/fee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ var _ = Describe("bitcoin fees", func() {
fees, err := estimator.FeeSuggestion()
Expect(err).Should(BeNil())

Expect(fees.Minimum).Should(BeNumerically(">", 1))
Expect(fees.Minimum).Should(BeNumerically(">=", 1))

Expect(fees.Economy).Should(BeNumerically(">", 1))
Expect(fees.Economy).Should(BeNumerically(">=", 1))
Expect(fees.Economy).Should(BeNumerically(">=", fees.Minimum))

Expect(fees.Low).Should(BeNumerically(">", 1))
Expand Down

0 comments on commit 8b563e2

Please sign in to comment.