Skip to content

Commit

Permalink
add general greater time to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elraphty committed Oct 18, 2024
1 parent 92739a4 commit 27b9e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/bounty_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1804,7 +1804,7 @@ func TestBountyBudgetWithdraw(t *testing.T) {
db.TestDB.AddPaymentHistory(payment)

// add a zero amount withdrawal with a time lesser than 2 hours to beat the 1 hour withdrawal timer
paymentWTime := time.Now().Add(-time.Hour * 2)
paymentWTime := time.Now().Add(time.Hour * 3)

payment = db.NewPaymentHistory{
Amount: 0,
Expand Down

0 comments on commit 27b9e5e

Please sign in to comment.