mirror of
https://github.com/aljazceru/cyphernode.git
synced 2026-02-03 19:54:28 +01:00
renamed opentimestamps feature to otsclient
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Open timestamps client",
|
||||
"value": "opentimestamps"
|
||||
"value": "otsclient"
|
||||
},
|
||||
{
|
||||
"name": "Electrum server",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
const name = 'opentimestamps';
|
||||
const name = 'otsclient';
|
||||
const featureCondition = function(props) {
|
||||
return props.features && props.features.indexOf( name ) != -1;
|
||||
}
|
||||
@@ -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' %>
|
||||
|
||||
@@ -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' %>"
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user