resolved conflicts

This commit is contained in:
Ivan Socolsky 2014-09-12 10:28:16 -03:00
parent 1f83f85189
commit 19a8733a9c
2 changed files with 7 additions and 1 deletions

View File

@ -84,6 +84,8 @@ FakeWallet.prototype.getAddressesInfo = function() {
return ret;
};
FakeWallet.prototype.subscribeToAddresses = function() {};
FakeWallet.prototype.isShared = function() {
return this.totalCopayers > 1;
}

View File

@ -113,7 +113,11 @@ describe('Unit: Rate Service', function() {
beforeEach(module(function($provide) {
$provide.value('request', {
'get': function(_, cb) {
cb(null, null, [{name: 'lol currency', code: 'LOL', rate: 2}]);
cb(null, null, [{
name: 'lol currency',
code: 'LOL',
rate: 2
}]);
}
});
}));