Browse Source

reads files from BIT_FILE if none given

activeAddress
Matias Alejo Garcia 10 years ago
parent
commit
5d6155cb43
  1. 2
      bit-wallet/cli-utils.js

2
bit-wallet/cli-utils.js

@ -33,7 +33,7 @@ Utils.shortID = function(id) {
Utils.getClient = function(args) {
var storage = new Client.FileStorage({
filename: args.config
filename: args.config || process.env['BIT_FILE'],
});
return new Client({
storage: storage,

Loading…
Cancel
Save