Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit c077379

Browse files
authored
Merge pull request #1307 from dannypaz/tags-lightning
Update tags for lnd to match released versions of lnd
2 parents b4b4c56 + ed72997 commit c077379

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ We will use `lnd` to make GRPC calls from the ReactJS environment
3030
```
3131
git clone https://github.com/lightningnetwork/lnd $GOPATH/src/github.com/lightningnetwork/lnd
3232
cd $GOPATH/src/github.com/lightningnetwork/lnd
33-
make && make install tags="experimental autopilotrpc"
33+
make && make install tags="experimental autopilotrpc signrpc walletrpc chainrpc invoicesrpc routerrpc"
3434
```
3535
If you have any issues with this step, make sure to review the [Preliniaries to installing LND](https://github.com/lightningnetwork/lnd/blob/master/docs/INSTALL.md#preliminaries)
3636

assets/script/build_app.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [ "$(uname)" == "Darwin" ]; then
1212
else
1313
# build binaries for windows
1414
cd $GOPATH/src/github.com/lightningnetwork/lnd
15-
GOOS="windows" GOARCH="386" GO111MODULE="on" go build -tags="experimental autopilotrpc" -v github.com/lightningnetwork/lnd/cmd/lnd
15+
GOOS="windows" GOARCH="386" GO111MODULE="on" go build -tags="experimental autopilotrpc signrpc walletrpc chainrpc invoicesrpc routerrpc" -v github.com/lightningnetwork/lnd/cmd/lnd
1616
cp lnd.exe $TRAVIS_BUILD_DIR/assets/bin/win32/
1717

1818
# build the packages using electron-builder on docker

assets/script/install_lnd.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cd $GOPATH/src/github.com/lightningnetwork/lnd
2020
git checkout $LND_TAG
2121
# enable mainnet neutrino in lnd
2222
git fetch https://github.com/halseth/lnd.git mainnet-neutrino:mainnet-neutrino && git cherry-pick mainnet-neutrino
23-
make && make install tags="experimental autopilotrpc"
23+
make && make install tags="experimental autopilotrpc signrpc walletrpc chainrpc invoicesrpc routerrpc"
2424

2525
# install btcd
2626
git clone https://github.com/btcsuite/btcd $GOPATH/src/github.com/btcsuite/btcd

0 commit comments

Comments
 (0)