removed opentimestamps feature

This commit is contained in:
jash
2018-11-03 12:32:08 +01:00
committed by kexkey
parent aa645fc709
commit 210d9aa5bf
3 changed files with 0 additions and 32 deletions

View File

@@ -4,10 +4,6 @@
"value": "lightning"
},
{
"name": "Open timestamps client",
"value": "otsclient"
},
{
"name": "Electrum server",
"value": "electrum"

View File

@@ -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 [];
}
};

View File

@@ -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 %>