Skip to content

Commit 4e0c5ad

Browse files
committed
multi: update repo/module from github.com/{guggero => lightninglabs}/chantools
1 parent a84a59e commit 4e0c5ad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+82
-103
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PKG := github.com/guggero/chantools
1+
PKG := github.com/lightninglabs/chantools
22
TOOLS_DIR := tools
33

44
GOTEST := GO111MODULE=on go test -v

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ a private API URL with `--apiurl`.
2424

2525
The easiest way to install `chantools` is to [download a pre-built binary for
2626
your operating system and
27-
architecture](https://github.com/guggero/chantools/releases).
27+
architecture](https://github.com/lightninglabs/chantools/releases).
2828

2929
Example (make sure you always use the latest version!):
3030

3131
```shell
3232
$ cd /tmp
33-
$ wget -O chantools.tar.gz https://github.com/guggero/chantools/releases/download/v0.10.7/chantools-linux-amd64-v0.10.7.tar.gz
33+
$ wget -O chantools.tar.gz https://github.com/lightninglabs/chantools/releases/download/v0.10.7/chantools-linux-amd64-v0.10.7.tar.gz
3434
$ tar -zxvf chantools.tar.gz
3535
$ sudo mv chantools-*/chantools /usr/local/bin/
3636
```
@@ -43,7 +43,7 @@ need to make sure you have `go 1.19.x` (or later) and `make` installed and can
4343
then run the following commands:
4444

4545
```bash
46-
git clone https://github.com/guggero/chantools.git
46+
git clone https://github.com/lightninglabs/chantools.git
4747
cd chantools
4848
make install
4949
```
@@ -401,7 +401,7 @@ run them on a computer with a firewall that blocks outgoing connections.
401401
```text
402402
This tool provides helper functions that can be used rescue
403403
funds locked in lnd channels in case lnd itself cannot run properly anymore.
404-
Complete documentation is available at https://github.com/guggero/chantools/.
404+
Complete documentation is available at https://github.com/lightninglabs/chantools/.
405405
406406
Usage:
407407
chantools [command]

btc/bip39.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"github.com/btcsuite/btcd/btcutil/hdkeychain"
1414
"github.com/btcsuite/btcd/chaincfg"
15-
"github.com/guggero/chantools/bip39"
15+
"github.com/lightninglabs/chantools/bip39"
1616
"golang.org/x/crypto/pbkdf2"
1717
"golang.org/x/crypto/ssh/terminal"
1818
)

btc/bitcoind.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/btcsuite/btcd/btcutil/hdkeychain"
1111
"github.com/btcsuite/btcd/chaincfg"
1212
"github.com/btcsuite/btcd/wire"
13-
"github.com/guggero/chantools/lnd"
13+
"github.com/lightninglabs/chantools/lnd"
1414
)
1515

1616
const (

btc/summary.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55

66
"github.com/btcsuite/btclog"
7-
"github.com/guggero/chantools/dataformat"
7+
"github.com/lightninglabs/chantools/dataformat"
88
)
99

1010
func SummarizeChannels(apiURL string, channels []*dataformat.SummaryEntry,

cmd/chantools/chanbackup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/guggero/chantools/lnd"
6+
"github.com/lightninglabs/chantools/lnd"
77
"github.com/lightningnetwork/lnd/chanbackup"
88
"github.com/spf13/cobra"
99
)

cmd/chantools/closepoolaccount.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/btcsuite/btcd/btcutil/hdkeychain"
1111
"github.com/btcsuite/btcd/txscript"
1212
"github.com/btcsuite/btcd/wire"
13-
"github.com/guggero/chantools/btc"
14-
"github.com/guggero/chantools/lnd"
13+
"github.com/lightninglabs/chantools/btc"
14+
"github.com/lightninglabs/chantools/lnd"
1515
"github.com/lightninglabs/pool/account"
1616
"github.com/lightninglabs/pool/poolscript"
1717
"github.com/lightningnetwork/lnd/input"

cmd/chantools/closepoolaccount_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/btcsuite/btcd/btcec/v2"
88
"github.com/btcsuite/btcd/btcutil/hdkeychain"
99
"github.com/btcsuite/btcd/chaincfg"
10-
"github.com/guggero/chantools/lnd"
10+
"github.com/lightninglabs/chantools/lnd"
1111
"github.com/lightninglabs/pool/poolscript"
1212
"github.com/lightningnetwork/lnd/keychain"
1313
"github.com/stretchr/testify/require"

cmd/chantools/deletepayments.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/guggero/chantools/lnd"
6+
"github.com/lightninglabs/chantools/lnd"
77
"github.com/spf13/cobra"
88
)
99

cmd/chantools/derivekey.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/btcsuite/btcd/btcutil"
77
"github.com/btcsuite/btcd/btcutil/hdkeychain"
8-
"github.com/guggero/chantools/lnd"
8+
"github.com/lightninglabs/chantools/lnd"
99
"github.com/spf13/cobra"
1010
)
1111

0 commit comments

Comments
 (0)