11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
|
|
|
||
|
|
'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;
|
||
|
|
});
|