Wallet/js/services/pendingTxsService.js

11 lines
323 B
JavaScript
Raw Normal View History

2014-11-30 00:31:17 -03:00
'use strict';
angular.module('copayApp.services')
.factory('pendingTxsService', function($rootScope, $sce, $location, $filter, notification, $timeout, rateService) {
var root = {};
root.update = function(w) {
console.log('[pendingTxsService.js.8] TODO updade pending Txs'); //TODO
};
return root;
});