2014-08-27 16:01:25 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
2014-11-06 11:34:52 -03:00
|
|
|
angular.module('copayApp.services').factory('rateService', function(request) {
|
2014-11-28 11:23:08 -03:00
|
|
|
var cfg = _.extend(config.rates, {
|
2014-11-06 11:34:52 -03:00
|
|
|
request: request
|
2014-08-27 17:15:05 -03:00
|
|
|
});
|
2014-11-28 11:23:08 -03:00
|
|
|
return copay.RateService.singleton(cfg);
|
2014-11-06 11:34:52 -03:00
|
|
|
});
|