rates refresh every 5 minutes

This commit is contained in:
Kadir Sekha 2018-01-29 14:10:36 -04:00
commit e357a7006a

View file

@ -109,6 +109,6 @@ angular.module('copayApp.services').factory('rateService', function($http, lodas
}; };
root.updateRates(); root.updateRates();
setInterval(root.updateRates, 10000); setInterval(root.updateRates, 5 * 60 * 1000);
return root; return root;
}); });