mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-26 09:05:13 +01:00
removed opentimestamps feature
This commit is contained in:
@@ -4,10 +4,6 @@
|
||||
"value": "lightning"
|
||||
|
||||
},
|
||||
{
|
||||
"name": "Open timestamps client",
|
||||
"value": "otsclient"
|
||||
},
|
||||
{
|
||||
"name": "Electrum server",
|
||||
"value": "electrum"
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
const chalk = require('chalk');
|
||||
|
||||
const name = 'otsclient';
|
||||
|
||||
const capitalise = function( txt ) {
|
||||
return txt.charAt(0).toUpperCase() + txt.substr(1);
|
||||
};
|
||||
|
||||
const prefix = function() {
|
||||
return chalk.green(capitalise(name)+': ');
|
||||
};
|
||||
|
||||
const featureCondition = function(props) {
|
||||
return props.features && props.features.indexOf( name ) != -1;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
name: function() {
|
||||
return name;
|
||||
},
|
||||
prompts: function( utils ) {
|
||||
return [];
|
||||
},
|
||||
templates: function( props ) {
|
||||
return [];
|
||||
}
|
||||
};
|
||||
@@ -1,7 +1,6 @@
|
||||
INSTALLER_MODE=<%= installer_mode %>
|
||||
BITCOIN_INTERNAL=<%= (bitcoin_mode==="internal"?'true':'false') %>
|
||||
FEATURE_LIGHTNING=<%= (features.indexOf('lightning') != -1)?'true':'false' %>
|
||||
FEATURE_OTSCLIENT=<%= (features.indexOf('otsclient') != -1)?'true':'false' %>
|
||||
FEATURE_ELECTRUM=<%= (features.indexOf('electrum') != -1)?'true':'false' %>
|
||||
LIGHTNING_IMPLEMENTATION=<%= lightning_implementation %>
|
||||
BITCOIN_DATAPATH=<%= bitcoin_datapath %>
|
||||
|
||||
Reference in New Issue
Block a user