lnd/channeldb/migration31/store.go
ziggie 87fc58ecfe
multi: Add a channel.db migration.
The new migration removes the sweeper-last-tx top level bucket
from the channel.db database.
2023-08-15 10:00:30 +02:00

10 lines
236 B
Go

package migration31
var (
// lastTxBucketKey is the key that points to a bucket containing a
// single item storing the last published sweep tx.
//
// maps: lastTxKey -> serialized_tx
lastTxBucketKey = []byte("sweeper-last-tx")
)