Skip to content

Commit

Permalink
(fix) Addressed comment made during PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
abel committed Oct 11, 2023
1 parent b70150b commit 1941ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/chain_client/49_ChainStream.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


async def main() -> None:
network = Network.devnet()
network = Network.testnet()

client = AsyncClient(network)
composer = Composer(network=network.string())
Expand Down
2 changes: 1 addition & 1 deletion pyinjective/core/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def testnet(cls, node="lb"):
grpc_endpoint = "testnet.chain.grpc.injective.network:443"
grpc_exchange_endpoint = "testnet.exchange.grpc.injective.network:443"
grpc_explorer_endpoint = "testnet.explorer.grpc.injective.network:443"
chain_stream_endpoint = "testnet.chain.stream.injective.network"
chain_stream_endpoint = "testnet.chain.stream.injective.network:443"
cookie_assistant = DisabledCookieAssistant()
use_secure_connection = True

Expand Down

0 comments on commit 1941ecc

Please sign in to comment.