Add mock method at FakeWallet

This commit is contained in:
Yemel Jardi 2014-08-05 10:21:29 -03:00
parent 523a48b056
commit c8d24cc420
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,10 @@ FakeWallet.prototype.getAddressesInfo = function() {
return ret; return ret;
}; };
FakeWallet.prototype.isShared = function() {
return this.totalCopayers > 1;
}
FakeWallet.prototype.isReady = function() { FakeWallet.prototype.isReady = function() {
return true; return true;
} }