Skip to content

Commit 7734c42

Browse files
committed
.
1 parent a963b03 commit 7734c42

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ node_modules
3030

3131
*.swp
3232
out/
33-
db/
33+
db/*
3434

3535
.bit

bit-wallet/cli-utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Utils.parseAmount = function(text) {
109109
Utils.configureCommander = function(program) {
110110
program
111111
.version('0.0.1')
112-
.option('-f, --file [filename]', 'Wallet file', 'bit.dat')
112+
.option('-f, --file [filename]', 'Wallet file', process.env['HOME'] + '/.bit.dat')
113113
.option('-h, --host [host]', 'Bitcore Wallet Service URL (eg: http://localhost:3001/copay/api')
114114
.option('-v, --verbose', 'be verbose')
115115

db/.empty

Whitespace-only changes.

lib/storage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var Notification = require('./model/notification');
1616

1717
var Storage = function(opts) {
1818
opts = opts || {};
19-
this.db = opts.db || levelup(opts.dbPath || './db/copay.db', {
19+
this.db = opts.db || levelup(opts.dbPath || './db/bws.db', {
2020
valueEncoding: 'json'
2121
});
2222
};

0 commit comments

Comments
 (0)