Skip to content

Commit

Permalink
Merge pull request #538 from SiaFoundation/nate/reduce-ndf
Browse files Browse the repository at this point in the history
Fix NDF in TestContractLifecycle
  • Loading branch information
n8maninger authored Dec 19, 2024
2 parents ae9c8a9 + 7b89690 commit 1ce1855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/testutil/testutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func NewHostNode(t testing.TB, pk types.PrivateKey, network *consensus.Network,
}
t.Cleanup(func() { wm.Close() })

vm, err := storage.NewVolumeManager(cn.Store, storage.WithLogger(log.Named("storage")), storage.WithPruneInterval(500*time.Millisecond))
vm, err := storage.NewVolumeManager(cn.Store, storage.WithLogger(log.Named("storage")), storage.WithPruneInterval(time.Second))
if err != nil {
t.Fatal("failed to create volume manager:", err)
}
Expand Down

0 comments on commit 1ce1855

Please sign in to comment.