removed unnecessary service

This commit is contained in:
Mario Colque 2014-01-15 13:07:07 -03:00
parent bce4813248
commit 3d22ae49be
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
var TRANSACTION_DISPLAYED = 5;
var BLOCKS_DISPLAYED = 5;
angular.module('mystery.system').controller('IndexController', ['$scope', '$routeParams', 'Global', 'socket', 'Blocks', 'Transactions', function($scope, $routeParams, Global, socket, Blocks, Transactions) {
angular.module('mystery.system').controller('IndexController', ['$scope', 'Global', 'socket', 'Blocks', 'Transactions', function($scope, Global, socket, Blocks, Transactions) {
$scope.global = Global;
socket.on('tx', function(tx) {