mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
87fc58ecfe
The new migration removes the sweeper-last-tx top level bucket from the channel.db database.
10 lines
236 B
Go
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")
|
|
)
|