• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lightningnetwork / lnd / 15561477203

10 Jun 2025 01:54PM UTC coverage: 58.351% (-10.1%) from 68.487%
15561477203

Pull #9356

github

web-flow
Merge 6440b25db into c6d6d4c0b
Pull Request #9356: lnrpc: add incoming/outgoing channel ids filter to forwarding history request

33 of 36 new or added lines in 2 files covered. (91.67%)

28366 existing lines in 455 files now uncovered.

97715 of 167461 relevant lines covered (58.35%)

1.81 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/channeldb/migration_01_to_11/options.go
1
package migration_01_to_11
2

3
import "time"
4

5
const (
6
        // DefaultRejectCacheSize is the default number of rejectCacheEntries to
7
        // cache for use in the rejection cache of incoming gossip traffic. This
8
        // produces a cache size of around 1MB.
9
        DefaultRejectCacheSize = 50000
10

11
        // DefaultChannelCacheSize is the default number of ChannelEdges cached
12
        // in order to reply to gossip queries. This produces a cache size of
13
        // around 40MB.
14
        DefaultChannelCacheSize = 20000
15

16
        // DefaultDBTimeout specifies the default timeout value when opening
17
        // the bbolt database.
18
        DefaultDBTimeout = time.Second * 60
19
)
20

21
// Options holds parameters for tuning and customizing a channeldb.DB.
22
type Options struct {
23
        // RejectCacheSize is the maximum number of rejectCacheEntries to hold
24
        // in the rejection cache.
25
        RejectCacheSize int
26

27
        // ChannelCacheSize is the maximum number of ChannelEdges to hold in the
28
        // channel cache.
29
        ChannelCacheSize int
30

31
        // NoFreelistSync, if true, prevents the database from syncing its
32
        // freelist to disk, resulting in improved performance at the expense of
33
        // increased startup time.
34
        NoFreelistSync bool
35

36
        // DBTimeout specifies the timeout value to use when opening the wallet
37
        // database.
38
        DBTimeout time.Duration
39
}
40

41
// DefaultOptions returns an Options populated with default values.
UNCOV
42
func DefaultOptions() Options {
×
UNCOV
43
        return Options{
×
UNCOV
44
                RejectCacheSize:  DefaultRejectCacheSize,
×
UNCOV
45
                ChannelCacheSize: DefaultChannelCacheSize,
×
UNCOV
46
                NoFreelistSync:   true,
×
UNCOV
47
                DBTimeout:        DefaultDBTimeout,
×
UNCOV
48
        }
×
UNCOV
49
}
×
50

51
// OptionModifier is a function signature for modifying the default Options.
52
type OptionModifier func(*Options)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc