Skip to content

Commit a7e8b9f

Browse files
author
Bruno Barbieri
authored
fix instapay mainnet endpoint (#1144)
1 parent 2f485d8 commit a7e8b9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/core/PaymentChannelsClient.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class PaymentChannelsClient {
9797
hubUrl = `https://rinkeby.${PUBLIC_URL}/api/hub`;
9898
break;
9999
case 'mainnet':
100-
hubUrl = `https://mainnet.${PUBLIC_URL}/api/hub`;
100+
hubUrl = `https://${PUBLIC_URL}/api/hub`;
101101
break;
102102
default:
103103
throw new Error(`Unrecognized network: ${type}`);

0 commit comments

Comments
 (0)