Skip to content

Commit e0ae154

Browse files
authored
Merge pull request #257 from SatoshiPortal/dev
v0.8.1
2 parents c0e1be0 + e45f484 commit e0ae154

File tree

21 files changed

+287
-185
lines changed

21 files changed

+287
-185
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
.vscode
33
dist/**
44
!dist/setup.sh
5-
!dist/sr.sh
5+
!dist/sr.sh

api_auth_docker/tests/test-gatekeeper.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# action_installation_info=stats
1818
# action_getmempoolinfo=stats
1919
# action_getblockhash=stats
20-
#
20+
#
2121
# # Watcher can do what the stats can do, plus:
2222
# action_watch=watcher
2323
# action_unwatch=watcher
@@ -47,7 +47,7 @@
4747
# action_ln_listpays=watcher
4848
# action_ln_paystatus=watcher
4949
# action_bitcoin_estimatesmartfee=watcher
50-
#
50+
#
5151
# # Spender can do what the watcher can do, plus:
5252
# action_get_txns_spending=spender
5353
# action_getbalance=spender
@@ -78,10 +78,10 @@
7878
# action_listbatchers=spender
7979
# action_getbatcher=spender
8080
# action_getbatchdetails=spender
81-
#
81+
#
8282
# # Admin can do what the spender can do, plus:
83-
#
84-
#
83+
#
84+
#
8585
# # Should be called from inside the Docker network only:
8686
# action_conf=internal
8787
# action_newblock=internal
@@ -558,7 +558,7 @@ exec_in_test_container_leave_lf apk add --update curl coreutils openssl
558558

559559
# Copy keys to test container
560560
trace 1 "\n\n[test_gatekeeper] ${BCyan}Copying keys and certs to test container...${Color_Off}\n"
561-
gatekeeperid=$(docker ps -q -f "name=cyphernode_gatekeeper")
561+
gatekeeperid=$(docker ps -q -f "name=cyphernode.gatekeeper")
562562
testid=$(docker ps -q -f "name=tests-gatekeeper")
563563
docker cp ${gatekeeperid}:/etc/nginx/conf.d/keys.properties - | docker cp - ${testid}:/
564564
docker cp ${gatekeeperid}:/etc/ssl/certs/cert.pem - | docker cp - ${testid}:/

build.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
TRACING=1
44

5-
# CYPHERNODE VERSION "v0.8.0"
6-
CONF_VERSION="v0.8.0-local"
7-
GATEKEEPER_VERSION="v0.8.0-local"
8-
TOR_VERSION="v0.8.0-local"
9-
PROXY_VERSION="v0.8.0-local"
10-
NOTIFIER_VERSION="v0.8.0-local"
11-
PROXYCRON_VERSION="v0.8.0-local"
12-
OTSCLIENT_VERSION="v0.8.0-local"
13-
PYCOIN_VERSION="v0.8.0-local"
5+
# CYPHERNODE VERSION "v0.8.1"
6+
CONF_VERSION="v0.8.1-local"
7+
GATEKEEPER_VERSION="v0.8.1-local"
8+
TOR_VERSION="v0.8.1-local"
9+
PROXY_VERSION="v0.8.1-local"
10+
NOTIFIER_VERSION="v0.8.1-local"
11+
PROXYCRON_VERSION="v0.8.1-local"
12+
OTSCLIENT_VERSION="v0.8.1-local"
13+
PYCOIN_VERSION="v0.8.1-local"
1414

1515
trace()
1616
{

cyphernodeconf_docker/package-lock.json

Lines changed: 105 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cyphernodeconf_docker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"dependencies": {
1818
"@rauschma/stringio": "^1.4.0",
19-
"ajv": "^6.10.0",
19+
"ajv": "^6.12.3",
2020
"chalk": "^2.4.2",
2121
"coinstring": "^2.3.0",
2222
"colorsys": "^1.0.22",
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const chalk = require('chalk');
2+
3+
const name = 'proxycron';
4+
5+
module.exports = {
6+
name: function() {
7+
return name;
8+
},
9+
prompts: function( utils ) {
10+
return [];
11+
},
12+
templates: function( props ) {
13+
return [ 'proxycron.env' ];
14+
}
15+
};

cyphernodeconf_docker/templates/installer/docker/docker-compose.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,8 @@ services:
245245

246246
proxycron:
247247
image: cyphernode/proxycron:<%= proxycron_version %>
248-
environment:
249-
- "TX_CONF_URL=proxy:8888/executecallbacks"
250-
- "OTS_URL=proxy:8888/ots_backoffice"
248+
env_file:
249+
- .env/proxycron.env
251250
networks:
252251
- cyphernodenet
253252
depends_on:

0 commit comments

Comments
 (0)