Fix livenet

This commit is contained in:
Gustavo Maximiliano Cortez 2016-10-10 18:37:07 -03:00
commit 7edf1b2894
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -11,9 +11,9 @@ angular.module('copayApp.services').factory('bitpayCardService', function($http,
* Development: 'testnet'
* Production: 'livenet'
*/
credentials.NETWORK = 'testnet';
credentials.NETWORK = 'livenet';
if (credentials.NETWORK == 'testnet') {
credentials.BITPAY_API_URL = 'https://gustavo.bp:8088';
credentials.BITPAY_API_URL = 'https://test.bitpay.com';
}
else {
credentials.BITPAY_API_URL = 'https://bitpay.com';