Skip to content

Commit

Permalink
fix: use https for default testnet node
Browse files Browse the repository at this point in the history
  • Loading branch information
yknl committed Nov 20, 2020
1 parent da50fa0 commit 43b2886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/network/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class StacksMainnet implements StacksNetwork {
export class StacksTestnet extends StacksMainnet implements StacksNetwork {
version = TransactionVersion.Testnet;
chainId = ChainID.Testnet;
coreApiUrl = 'http://stacks-node-api.blockstack.org';
coreApiUrl = 'https://stacks-node-api.blockstack.org';
}

export class StacksMocknet extends StacksMainnet implements StacksNetwork {
Expand Down

0 comments on commit 43b2886

Please sign in to comment.