From 6cb324b070a106bba9f51fc79db9081053960791 Mon Sep 17 00:00:00 2001 From: Javier Date: Tue, 20 Dec 2016 12:37:40 -0300 Subject: [PATCH] add bws url info --- src/js/controllers/preferencesBwsUrl.js | 4 ++-- www/views/preferencesBwsUrl.html | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/js/controllers/preferencesBwsUrl.js b/src/js/controllers/preferencesBwsUrl.js index 6885b000c..638219ae4 100644 --- a/src/js/controllers/preferencesBwsUrl.js +++ b/src/js/controllers/preferencesBwsUrl.js @@ -1,14 +1,14 @@ 'use strict'; angular.module('copayApp.controllers').controller('preferencesBwsUrlController', - function($scope, $log, $stateParams, configService, applicationService, profileService, storageService) { + function($scope, $log, $stateParams, configService, applicationService, profileService, storageService, $window) { $scope.success = null; var wallet = profileService.getWallet($stateParams.walletId); var walletId = wallet.credentials.walletId; var defaults = configService.getDefaults(); var config = configService.getSync(); - + $scope.appName = $window.appConfig.nameCase; $scope.bwsurl = { value: (config.bwsFor && config.bwsFor[walletId]) || defaults.bws.url }; diff --git a/www/views/preferencesBwsUrl.html b/www/views/preferencesBwsUrl.html index e3d2e7594..397472245 100644 --- a/www/views/preferencesBwsUrl.html +++ b/www/views/preferencesBwsUrl.html @@ -15,6 +15,12 @@ +
+
+ {{appName}} depends on Bitcore Wallet Service (BWS) for blockchain information, networking and Copayer synchronization. + The default configuration points to https://bws.bitpay.com (BitPay's public BWS instance). +
+