Skip to content

Commit

Permalink
reducing sampling window
Browse files Browse the repository at this point in the history
  • Loading branch information
distractedm1nd committed Jan 15, 2024
1 parent bce3335 commit 5f4fe71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pruner/full/window.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ import (

// Window is the availability window for light nodes in the Celestia
// network (30 days).
const Window = pruner.AvailabilityWindow(time.Hour * 24)
const Window = pruner.AvailabilityWindow(time.Hour * 2)
2 changes: 1 addition & 1 deletion pruner/light/window.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ import (

// Window is the availability window for light nodes in the Celestia
// network (30 days).
const Window = pruner.AvailabilityWindow(time.Hour * 24)
const Window = pruner.AvailabilityWindow(time.Hour * 2)

0 comments on commit 5f4fe71

Please sign in to comment.