itns-sidechain/bin/cli
Christopher Jeffrey a03fcd1a23
pkg: rename to hsd.
2018-08-01 20:00:09 -07:00

14 lines
355 B
JavaScript
Executable file

#!/usr/bin/env node
'use strict';
console.error('%s%s',
'Warning: The `hsd cli` interface is deprecated.\n',
'Please use `hsd-cli` ($ npm install bclient).');
if (process.argv.length > 2 && process.argv[2] === 'wallet') {
process.argv.splice(2, 1); // Evil hack.
require('hs-client/bin/hsw-cli');
} else {
require('hs-client/bin/hsd-cli');
}