We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e4dc51 commit 4c61889Copy full SHA for 4c61889
pycardano/backend/blockfrost.py
@@ -174,7 +174,7 @@ def protocol_param(self) -> ProtocolParameters:
174
175
def _get_script(self, script_hash: str) -> ScriptType:
176
script_type = self.api.script(script_hash).type
177
- if script_type.startsWith("plutusV"):
+ if script_type.startswith("plutusV"):
178
ps = PlutusScript.from_version(
179
int(script_type[-1]), bytes.fromhex(self.api.script_cbor(script_hash).cbor)
180
)
0 commit comments