add redirs to internal pages
This commit is contained in:
parent
572dff6baf
commit
bdaf40de48
11 changed files with 88 additions and 65 deletions
|
|
@ -126,7 +126,7 @@ describe('Profile model', function() {
|
|||
p.addWallet('123', {}, function(err) {
|
||||
p.addWallet('234', {}, function(err) {
|
||||
p.addWallet('345', {}, function(err) {
|
||||
_.pluck(p.listWallets(), 'id').should.deep.equal(['123', '234', '345']);
|
||||
_.pluck(p.listWallets(), 'id').sort().should.deep.equal(['123', '234', '345']);
|
||||
p.deleteWallet('234', function(err) {
|
||||
_.pluck(p.listWallets(), 'id').should.deep.equal(['123', '345']);
|
||||
done();
|
||||
|
|
@ -14,6 +14,8 @@ FakeBlockchain.prototype.getTransactions = function(addresses, cb) {
|
|||
cb(null, []);
|
||||
};
|
||||
|
||||
FakeBlockchain.prototype.subscribe = function() {
|
||||
};
|
||||
|
||||
FakeBlockchain.prototype.fixUnspent = function(u) {
|
||||
this.u = u;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue