diff --git a/cmd/chantools/deletepayments.go b/cmd/chantools/deletepayments.go index 57556af..1c2eb31 100644 --- a/cmd/chantools/deletepayments.go +++ b/cmd/chantools/deletepayments.go @@ -25,7 +25,7 @@ If only the failed payments should be deleted (and not the successful ones), the CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command!'`, +run lnd v0.16.0-beta or later after using this command!'`, Example: `chantools deletepayments --failedonly \ --channeldb ~/.lnd/data/graph/mainnet/channel.db`, RunE: cc.Execute, diff --git a/cmd/chantools/dropchannelgraph.go b/cmd/chantools/dropchannelgraph.go index 7214bfb..2f42ff1 100644 --- a/cmd/chantools/dropchannelgraph.go +++ b/cmd/chantools/dropchannelgraph.go @@ -46,7 +46,7 @@ without removing any other data. CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command!'`, +run lnd v0.16.0-beta or later after using this command!'`, Example: `chantools dropchannelgraph \ --channeldb ~/.lnd/data/graph/mainnet/channel.db \ --node_identity_key 03...... diff --git a/cmd/chantools/migratedb.go b/cmd/chantools/migratedb.go index a7caf63..0a080a0 100644 --- a/cmd/chantools/migratedb.go +++ b/cmd/chantools/migratedb.go @@ -25,7 +25,7 @@ needs to read the database content. CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command!'`, +run lnd v0.16.0-beta or later after using this command!'`, Example: `chantools migratedb \ --channeldb ~/.lnd/data/graph/mainnet/channel.db`, RunE: cc.Execute, diff --git a/cmd/chantools/removechannel.go b/cmd/chantools/removechannel.go index 27b099b..3e331c9 100644 --- a/cmd/chantools/removechannel.go +++ b/cmd/chantools/removechannel.go @@ -31,7 +31,7 @@ channel was never confirmed on chain! CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command!`, +run lnd v0.16.0-beta or later after using this command!`, Example: `chantools removechannel \ --channeldb ~/.lnd/data/graph/mainnet/channel.db \ --channel 3149764effbe82718b280de425277e5e7b245a4573aa4a0203ac12cee1c37816:0`, diff --git a/doc/chantools_deletepayments.md b/doc/chantools_deletepayments.md index 87bca28..2b4f357 100644 --- a/doc/chantools_deletepayments.md +++ b/doc/chantools_deletepayments.md @@ -10,7 +10,7 @@ If only the failed payments should be deleted (and not the successful ones), the CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command!' +run lnd v0.16.0-beta or later after using this command!' ``` chantools deletepayments [flags] diff --git a/doc/chantools_dropchannelgraph.md b/doc/chantools_dropchannelgraph.md index 9fa5346..e97171a 100644 --- a/doc/chantools_dropchannelgraph.md +++ b/doc/chantools_dropchannelgraph.md @@ -12,7 +12,7 @@ without removing any other data. CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command!' +run lnd v0.16.0-beta or later after using this command!' ``` chantools dropchannelgraph [flags] diff --git a/doc/chantools_migratedb.md b/doc/chantools_migratedb.md index d1d322e..16effd9 100644 --- a/doc/chantools_migratedb.md +++ b/doc/chantools_migratedb.md @@ -11,7 +11,7 @@ needs to read the database content. CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command!' +run lnd v0.16.0-beta or later after using this command!' ``` chantools migratedb [flags] diff --git a/doc/chantools_removechannel.md b/doc/chantools_removechannel.md index 38f092f..43c331b 100644 --- a/doc/chantools_removechannel.md +++ b/doc/chantools_removechannel.md @@ -11,7 +11,7 @@ channel was never confirmed on chain! CAUTION: Running this command will make it impossible to use the channel DB with an older version of lnd. Downgrading is not possible and you'll need to -run lnd v0.15.1-beta or later after using this command! +run lnd v0.16.0-beta or later after using this command! ``` chantools removechannel [flags] diff --git a/go.mod b/go.mod index b5536fa..601cefa 100644 --- a/go.mod +++ b/go.mod @@ -18,7 +18,7 @@ require ( github.com/gogo/protobuf v1.3.2 github.com/hasura/go-graphql-client v0.9.1 github.com/lightninglabs/pool v0.5.7-alpha.0.20220715160511-f7c1ef26af2b - github.com/lightningnetwork/lnd v0.16.0-beta.rc1 + github.com/lightningnetwork/lnd v0.16.0-beta.rc2 github.com/lightningnetwork/lnd/kvdb v1.4.1 github.com/lightningnetwork/lnd/queue v1.1.0 github.com/lightningnetwork/lnd/ticker v1.1.0 @@ -95,7 +95,7 @@ require ( github.com/lib/pq v1.10.3 // indirect github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf // indirect github.com/lightninglabs/neutrino v0.15.0 // indirect - github.com/lightninglabs/neutrino/cache v1.1.0 // indirect + github.com/lightninglabs/neutrino/cache v1.1.1 // indirect github.com/lightningnetwork/lightning-onion v1.2.1-0.20221202012345-ca23184850a1 // indirect github.com/lightningnetwork/lnd/clock v1.1.0 // indirect github.com/lightningnetwork/lnd/healthcheck v1.2.2 // indirect diff --git a/go.sum b/go.sum index f2af3ff..6a008f0 100644 --- a/go.sum +++ b/go.sum @@ -466,14 +466,14 @@ github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf h1:HZKvJUHlcXI github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf/go.mod h1:vxmQPeIQxPf6Jf9rM8R+B4rKBqLA2AjttNxkFBL2Plk= github.com/lightninglabs/neutrino v0.15.0 h1:yr3uz36fLAq8hyM0TRUVlef1TRNoWAqpmmNlVtKUDtI= github.com/lightninglabs/neutrino v0.15.0/go.mod h1:pmjwElN/091TErtSE9Vd5W4hpxoG2/+xlb+HoPm9Gug= -github.com/lightninglabs/neutrino/cache v1.1.0 h1:szZIhVabiQIsGzJjhvo76sj05Au+zVotj2M34EquGME= -github.com/lightninglabs/neutrino/cache v1.1.0/go.mod h1:XJNcgdOw1LQnanGjw8Vj44CvguYA25IMKjWFZczwZuo= +github.com/lightninglabs/neutrino/cache v1.1.1 h1:TllWOSlkABhpgbWJfzsrdUaDH2fBy/54VSIB4vVqV8M= +github.com/lightninglabs/neutrino/cache v1.1.1/go.mod h1:XJNcgdOw1LQnanGjw8Vj44CvguYA25IMKjWFZczwZuo= github.com/lightninglabs/pool v0.5.7-alpha.0.20220715160511-f7c1ef26af2b h1:rr0bxgJXScA9WehMv5OxKQrUd4G2EVXBub8my9N+TcA= github.com/lightninglabs/pool v0.5.7-alpha.0.20220715160511-f7c1ef26af2b/go.mod h1:iQJIB6oPP++G0PfOu9wVNNxuTYV++gDetYyPmz7VUJU= github.com/lightningnetwork/lightning-onion v1.2.1-0.20221202012345-ca23184850a1 h1:Wm0g70gkcAu2pGpNZwfWPSVOY21j8IyYsNewwK4OkT4= github.com/lightningnetwork/lightning-onion v1.2.1-0.20221202012345-ca23184850a1/go.mod h1:7dDx73ApjEZA0kcknI799m2O5kkpfg4/gr7N092ojNo= -github.com/lightningnetwork/lnd v0.16.0-beta.rc1 h1:SZvdompo5RM2zfHdyZv8iSGN/ak8obJzl7/MNi5h/8I= -github.com/lightningnetwork/lnd v0.16.0-beta.rc1/go.mod h1:K66tBq9a+42jUxR+h7hS2XToPeDNGZjWq6b+quKTmO0= +github.com/lightningnetwork/lnd v0.16.0-beta.rc2 h1:49vVlAzUBcE6kEBDl77ohKsFmlzJ5YOZ4dGHCzNoYb4= +github.com/lightningnetwork/lnd v0.16.0-beta.rc2/go.mod h1:MepaR6bfcPFLt6dGfz3Y8P2BFtvOLJuqT6aulf2eYhE= github.com/lightningnetwork/lnd/clock v1.0.1/go.mod h1:KnQudQ6w0IAMZi1SgvecLZQZ43ra2vpDNj7H/aasemg= github.com/lightningnetwork/lnd/clock v1.1.0 h1:/yfVAwtPmdx45aQBoXQImeY7sOIEr7IXlImRMBOZ7GQ= github.com/lightningnetwork/lnd/clock v1.1.0/go.mod h1:KnQudQ6w0IAMZi1SgvecLZQZ43ra2vpDNj7H/aasemg=