12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
'use strict';
|
|
|
|
angular.module('copay.peer').controller('PeerController',
|
|
function($scope, $rootScope, $location, $routeParams, Socket, controllerUtils) {
|
|
|
|
$scope.init = function() {
|
|
//Network.connect($rootScope.masterId);
|
|
};
|
|
|
|
controllerUtils.handleTransactionByAddress($scope);
|
|
});
|
|
|