resolved conflicts
This commit is contained in:
parent
1f83f85189
commit
19a8733a9c
2 changed files with 7 additions and 1 deletions
|
|
@ -84,6 +84,8 @@ FakeWallet.prototype.getAddressesInfo = function() {
|
||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
FakeWallet.prototype.subscribeToAddresses = function() {};
|
||||||
|
|
||||||
FakeWallet.prototype.isShared = function() {
|
FakeWallet.prototype.isShared = function() {
|
||||||
return this.totalCopayers > 1;
|
return this.totalCopayers > 1;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,11 @@ describe('Unit: Rate Service', function() {
|
||||||
beforeEach(module(function($provide) {
|
beforeEach(module(function($provide) {
|
||||||
$provide.value('request', {
|
$provide.value('request', {
|
||||||
'get': function(_, cb) {
|
'get': function(_, cb) {
|
||||||
cb(null, null, [{name: 'lol currency', code: 'LOL', rate: 2}]);
|
cb(null, null, [{
|
||||||
|
name: 'lol currency',
|
||||||
|
code: 'LOL',
|
||||||
|
rate: 2
|
||||||
|
}]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}));
|
}));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue