Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
fix: use https for wallets.ark.io (#3478)
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian authored Mar 10, 2021
1 parent 965285b commit 9e10969
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/networks/mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "ark.mainnet",
"name": "ARK Mainnet",
"title": "ARK Mainnet",
"server": "http://wallets.ark.io",
"server": "https://wallets.ark.io",
"description": "The ARK Mainnet should be chosen in most cases.",
"imagePath": "networks/ark.png",
"apiVersion": 2,
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/store/modules/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default new BaseModule(NetworkModel, {
// Update API server on existing networks
const servers = {
'ark.devnet': 'https://dwallets.ark.io',
'ark.mainnet': 'http://wallets.ark.io'
'ark.mainnet': 'https://wallets.ark.io'
}
const sanitizedAll = all.map(network => {
const server = servers[network.id] || network.server
Expand Down

0 comments on commit 9e10969

Please sign in to comment.