Skip to content

Commit

Permalink
Merge pull request bitpay#22 from matiu/feat/verificator2
Browse files Browse the repository at this point in the history
Feat/verificator2
  • Loading branch information
isocolsky committed Feb 17, 2015
2 parents a58a1a5 + fb88da6 commit ab6ada0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bit-wallet/bit-join
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var secret = args[0];
var copayerName = args[1] || process.env.USER;

var client = utils.getClient(program);
cli.joinWallet(secret, copayerName, function(err, xx) {
client.joinWallet(secret, copayerName, function(err, xx) {
utils.die(err);
console.log(' * Wallet Joined.', xx || '');
});
Empty file modified bit-wallet/bit-reject
100644 → 100755
Empty file.
Empty file modified bit-wallet/bit-rm
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion bit-wallet/bit-status
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ client.getStatus(function(err, res) {
utils.die(err);

var x = res.wallet;
console.log('* Wallet %s [%s]: %d-%d %s ', x.name, x.isTestnet ? 'testnet' : 'livenet', x.m, x.n, x.status);
console.log('* Wallet %s [%s]: %d-%d %s ', x.name, x.network, x.m, x.n, x.status);

var x = res.balance;
console.log('* Balance %d (Locked: %d)', x.totalAmount, x.lockedAmount);
Expand Down

0 comments on commit ab6ada0

Please sign in to comment.