Unverified Commit c0773791 authored by Tankred Hase's avatar Tankred Hase Committed by GitHub

Merge pull request #1307 from dannypaz/tags-lightning

Update tags for lnd to match released versions of lnd
parents b4b4c56e ed72997e
......@@ -30,7 +30,7 @@ We will use `lnd` to make GRPC calls from the ReactJS environment
```
git clone https://github.com/lightningnetwork/lnd $GOPATH/src/github.com/lightningnetwork/lnd
cd $GOPATH/src/github.com/lightningnetwork/lnd
make && make install tags="experimental autopilotrpc"
make && make install tags="experimental autopilotrpc signrpc walletrpc chainrpc invoicesrpc routerrpc"
```
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)
......
......@@ -12,7 +12,7 @@ if [ "$(uname)" == "Darwin" ]; then
else
# build binaries for windows
cd $GOPATH/src/github.com/lightningnetwork/lnd
GOOS="windows" GOARCH="386" GO111MODULE="on" go build -tags="experimental autopilotrpc" -v github.com/lightningnetwork/lnd/cmd/lnd
GOOS="windows" GOARCH="386" GO111MODULE="on" go build -tags="experimental autopilotrpc signrpc walletrpc chainrpc invoicesrpc routerrpc" -v github.com/lightningnetwork/lnd/cmd/lnd
cp lnd.exe $TRAVIS_BUILD_DIR/assets/bin/win32/
# build the packages using electron-builder on docker
......
......@@ -20,7 +20,7 @@ cd $GOPATH/src/github.com/lightningnetwork/lnd
git checkout $LND_TAG
# enable mainnet neutrino in lnd
git fetch https://github.com/halseth/lnd.git mainnet-neutrino:mainnet-neutrino && git cherry-pick mainnet-neutrino
make && make install tags="experimental autopilotrpc"
make && make install tags="experimental autopilotrpc signrpc walletrpc chainrpc invoicesrpc routerrpc"
# install btcd
git clone https://github.com/btcsuite/btcd $GOPATH/src/github.com/btcsuite/btcd
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment