Skip to content

Commit 9d3ccb1

Browse files
committed
Fix structs loading
1 parent 0659359 commit 9d3ccb1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tinyman/liquid_staking/struct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
MINIMUM_BALANCE_REQUIREMENT_PER_BOX_BYTE = 400
1010

1111

12-
structs = json.load(importlib.resources.files(tinyman.liquid_staking).joinpath("structs.json").read_text())["structs"]
12+
structs = json.loads(importlib.resources.files(tinyman.liquid_staking).joinpath("structs.json").read_text())["structs"]
1313

1414

1515
class Struct():

0 commit comments

Comments
 (0)