renamed opentimestamps feature to otsclient

This commit is contained in:
jash
2018-10-08 14:26:15 +02:00
committed by kexkey
parent 549c762ee3
commit d94a8fef8d
5 changed files with 6 additions and 6 deletions

View File

@@ -6,7 +6,7 @@
},
{
"name": "Open timestamps client",
"value": "opentimestamps"
"value": "otsclient"
},
{
"name": "Electrum server",

View File

@@ -1,5 +1,5 @@
const name = 'opentimestamps';
const name = 'otsclient';
const featureCondition = function(props) {
return props.features && props.features.indexOf( name ) != -1;
}

View File

@@ -1,5 +1,5 @@
INSTALLER_MODE=<%= installer_mode %>
BITCOIN_INTERNAL=<%= (bitcoin_mode==="internal"?'true':'false') %>
FEATURE_LIGHTNING=<%= (features.indexOf('lightning') != -1)?'true':'false' %>
FEATURE_OPENTIMESTAMPS=<%= (features.indexOf('opentimestamps') != -1)?'true':'false' %>
FEATURE_OTSCLIENT=<%= (features.indexOf('otsclient') != -1)?'true':'false' %>
FEATURE_ELECTRUM=<%= (features.indexOf('electrum') != -1)?'true':'false' %>

View File

@@ -15,7 +15,7 @@ services:
"DB_PATH":"/proxyuser/db"
"DB_FILE":"/proxyuser/db/proxydb"
"PYCOIN_CONTAINER":"pycoin:7777"
"OTS_CONTAINER":"opentimestamps:6666"
"OTS_CONTAINER":"otsclient:6666"
"DERIVATION_PUB32":"<%= xpub %>"
"DERIVATION_PATH":"<%= derivation_path %>"
"WATCHER_BTC_NODE_PRUNED":"<%= bitcoin_prune?'true':'false' %>"

View File

@@ -18,8 +18,8 @@ install_docker() {
build_docker_image ../SatoshiPortal/dockers/$arch/LN/c-lightning cyphernode/clightning
fi
if [[ $FEATURE_OPENTIMESTAMPS == true ]]; then
trace "Opentimestamps support not implemented"
if [[ $FEATURE_OTSCLIENT == true ]]; then
build_docker_image ../SatoshiPortal/dockers/$arch/ots/otsclient cyphernode/otsclient
fi