From 085f55ce80f443b27c8d42fd4bba9cdd64dd3e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thoralf=20M=C3=BCller?= Date: Wed, 6 Sep 2023 11:50:51 +0200 Subject: [PATCH] Python: add burned_mana field --- bindings/python/iota_sdk/types/block.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/python/iota_sdk/types/block.py b/bindings/python/iota_sdk/types/block.py index a3796f5e11..a70de66e41 100644 --- a/bindings/python/iota_sdk/types/block.py +++ b/bindings/python/iota_sdk/types/block.py @@ -18,11 +18,13 @@ class Block: Attributes: protocol_version: The protocol version with which this block was issued. parents: The parents of this block. + burned_mana: The amount of Mana the Account identified by the IssuerId is at most willing to burn for this block. payload: The optional payload of this block. """ protocol_version: int parents: List[HexStr] + burned_mana: str payload: Optional[TaggedDataPayload | TransactionPayload | MilestonePayload] = None