From 536e2bae09866bf01f8c9bfa5d4bb8842300f6b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=BCndler?= Date: Wed, 18 Jan 2023 11:19:25 +0100 Subject: [PATCH] Fix typo in documentation pointing to Network.PREPROD Network should probably longterm also have values to distinguish the subnetworks --- docs/source/guides/plutus.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/guides/plutus.rst b/docs/source/guides/plutus.rst index 9d495f91..9961b4a8 100644 --- a/docs/source/guides/plutus.rst +++ b/docs/source/guides/plutus.rst @@ -118,7 +118,7 @@ Back into the python console. Similar to `Transaction guide <../guides/transaction.html>`_, we build a chain context using `BlockFrostChainContext <../api/pycardano.backend.base.html#pycardano.backend.blockfrost.BlockFrostChainContext>`_:: >>> from pycardano import BlockFrostChainContext, Network - >>> network = Network.PREPROD + >>> network = Network.TESTNET >>> context = BlockFrostChainContext("your_blockfrost_project_id", network) Step 2