graph/db: rename Options to KVStoreOptions

Namespace these options so that we can introduce separate options for
the new ChannelGraph.
This commit is contained in:
Elle Mouton
2025-02-18 13:39:43 -03:00
parent ae3961b47f
commit 81e0608c10
4 changed files with 24 additions and 23 deletions

View File

@@ -12,8 +12,8 @@ type ChannelGraph struct {
}
// NewChannelGraph creates a new ChannelGraph instance with the given backend.
func NewChannelGraph(db kvdb.Backend, options ...OptionModifier) (*ChannelGraph,
error) {
func NewChannelGraph(db kvdb.Backend, options ...KVStoreOptionModifier) (
*ChannelGraph, error) {
store, err := NewKVStore(db, options...)
if err != nil {