Skip to content
Snippets Groups Projects
Commit c4ba414a authored by Jakub Ziebinski's avatar Jakub Ziebinski Committed by Krzysztof Mochocki
Browse files

Change From field to from_ in CancelTransferFromSavings

parent 986f0245
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@ from __future__ import annotations
from typing import Final
from pydantic import Field
from schemas.__private.hive_fields_basic_schemas import AccountName, Uint32t
from schemas.__private.preconfigured_base_model import Operation
......@@ -9,5 +11,5 @@ DEFAULT_REQUEST_ID: Final[Uint32t] = Uint32t(0)
class CancelTransferFromSavingsOperation(Operation):
From: AccountName
from_: AccountName = Field(..., alias="from")
request_id: Uint32t = DEFAULT_REQUEST_ID
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment