Skip to content

Commit 5a534bd

Browse files
committed
merge from master
2 parents dcd5744 + bbf0fa4 commit 5a534bd

File tree

108 files changed

+21041
-14883
lines changed

Some content is hidden

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

108 files changed

+21041
-14883
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ typings/
4141

4242
# Typescript compilation output
4343
dist/
44+
.tsbuildinfo
4445

4546
# Optional npm cache directory
4647
.npm
@@ -72,3 +73,4 @@ docker/xud/xud.db
7273

7374
# xud-simulation execution temp directory
7475
test/simulation/temp
76+
test/simulation/go

Diff for: .travis.yml

+4-12
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,12 @@ node_js:
66
cache:
77
directories:
88
- "node_modules"
9-
- $GOCACHE
10-
- $GOPATH/pkg
11-
- $GOPATH/bin
12-
- $GOPATH/src/github.com/btcsuite
9+
- "test/simulation/go" # lnd, btcd, and dependencies
10+
11+
before_install:
12+
- eval "$(GIMME_GO_VERSION=1.12 gimme)"
1313

1414
script:
1515
- npm run lintNoFix
1616
- npm run test
17-
18-
# network simulation tests
19-
- eval "$(GIMME_GO_VERSION=1.12 gimme)"
20-
- go get -u github.com/golang/dep/cmd/dep
21-
- go get -u github.com/btcsuite/btcd
22-
- npm install
23-
- npm run compile
2417
- npm run test:sim
25-

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ If you already have [Node.js](https://nodejs.org/en/download/) (min 10.15.3) ins
2020
sudo npm install xud -g --unsafe-perm
2121
```
2222

23-
Detailed instructions for installing `xud` can be found in the wiki on our [Installation](https://github.com/ExchangeUnion/xud/wiki/Installation) page. Instructions for installing via Docker are on our [Docker](https://github.com/ExchangeUnion/xud/wiki/Docker) page.
23+
Detailed instructions for installing `xud` can be found in the wiki on our [Installation](https://github.com/ExchangeUnion/xud/wiki/Installation) page.
2424

2525
## Usage
2626

27-
Open a new terminal and launch `xud`.
27+
Open a new terminal and launch `xud`.
2828

2929
```
3030
$ ./xud
@@ -55,4 +55,4 @@ All files in this repository are licensed under the [GNU Affero General Public L
5555

5656
## Development & Testing Discussion
5757

58-
Comments, questions, and any development-related discussions are welcome in our [Gitter chat](https://gitter.im/exchangeunion/Lobby)
58+
Comments, questions, and any development-related discussions are welcome in our [Gitter chat](https://gitter.im/exchangeunion/Lobby)

Diff for: bin/xud

+4
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ const { argv } = require('yargs')
6262
type: 'string',
6363
alias: 'x',
6464
},
65+
'http.port': {
66+
describe: 'Port to listen for http requests',
67+
type: 'number',
68+
},
6569
'lnd.[currency].certpath': {
6670
describe: 'Path to the SSL certificate for lnd',
6771
type: 'string',

Diff for: docker/btcd/Dockerfile

-46
This file was deleted.

Diff for: docker/btcd/start-btcctl.sh

-52
This file was deleted.

Diff for: docker/btcd/start-btcd.sh

-71
This file was deleted.

Diff for: docker/docker-compose.yml

-69
This file was deleted.

Diff for: docker/lnd/Dockerfile

-26
This file was deleted.

0 commit comments

Comments
 (0)