Add mock method at FakeWallet

This commit is contained in:
Yemel Jardi 2014-08-05 10:21:29 -03:00
commit c8d24cc420

View file

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