1
0
Fork 0
mirror of https://github.com/lightningnetwork/lnd.git synced 2025-03-15 11:59:26 +01:00
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

9 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")
)