Wallet/src/js/controllers/addresses.js

6 lines
224 B
JavaScript
Raw Normal View History

2016-11-14 14:52:10 -03:00
'use strict';
angular.module('copayApp.controllers').controller('addressesController', function($scope, $stateParams, profileService, walletService) {
$scope.wallet = profileService.getWallet($stateParams.walletId);
});