Skip to content

Commit

Permalink
Update bindings/python/iota_sdk/types/essence.py
Browse files Browse the repository at this point in the history
Co-authored-by: Thoralf-M <[email protected]>
  • Loading branch information
thibault-martinez and Thoralf-M committed Sep 20, 2023
1 parent b4a2ded commit 0652bec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/python/iota_sdk/types/essence.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ class RegularTransactionEssence(TransactionEssence):
network_id: str
# TODO: Replace with a proper SlotIndex type
creation_slot: HexStr
context_inputs: Optional[List[Union[CommitmentInput | BlockIssuanceCreditInput | RewardInput]]] = None
context_inputs: Optional[List[Union[CommitmentInput, BlockIssuanceCreditInput, RewardInput]]] = None
inputs: List[UtxoInput]
inputs_commitment: HexStr
outputs: List[Union[BasicOutput | AccountOutput | FoundryOutput | NftOutput | DelegationOutput]]
outputs: List[Union[BasicOutput, AccountOutput, FoundryOutput, NftOutput, DelegationOutput]]
allotments: Optional[List[Allotment]] = None
payload: Optional[TaggedDataPayload] = None
type: int = field(default_factory=lambda: EssenceType.RegularTransactionEssence, init=False)

0 comments on commit 0652bec

Please sign in to comment.