diff --git a/public/js/controllers/index.js b/public/js/controllers/index.js index d6e526ef..3e76640b 100755 --- a/public/js/controllers/index.js +++ b/public/js/controllers/index.js @@ -33,7 +33,7 @@ angular.module('insight.system').controller('IndexController', var txStr = tx.txid.toString(); console.log('Transaction received! ' + JSON.stringify(tx)); if (parseInt($scope.txs.length, 10) > parseInt(TRANSACTION_DISPLAYED, 10) - 1) { - $scope.txs.slice(Math.max($scope.txs.length - TRANSACTION_DISPLAYED, 1)); + $scope.txs = $scope.txs.slice(Math.max($scope.txs.length - TRANSACTION_DISPLAYED, 1)); } _getTransaction(txStr);