routing: start writing and reading from namespaced MC

and invoke the associated mission control migration.
This commit is contained in:
Elle Mouton
2024-08-13 18:24:46 +02:00
parent bfe4a08341
commit 6b449a6633
4 changed files with 53 additions and 13 deletions

View File

@@ -11,6 +11,7 @@ import (
"github.com/lightningnetwork/lnd/channeldb/migration30"
"github.com/lightningnetwork/lnd/channeldb/migration31"
"github.com/lightningnetwork/lnd/channeldb/migration32"
"github.com/lightningnetwork/lnd/channeldb/migration33"
"github.com/lightningnetwork/lnd/channeldb/migration_01_to_11"
"github.com/lightningnetwork/lnd/kvdb"
)
@@ -44,5 +45,6 @@ func UseLogger(logger btclog.Logger) {
migration30.UseLogger(logger)
migration31.UseLogger(logger)
migration32.UseLogger(logger)
migration33.UseLogger(logger)
kvdb.UseLogger(logger)
}