Skip to content

Commit

Permalink
making default
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Apr 16, 2024
1 parent 86efc4a commit ca15d31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mantis/simulation/routers/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,10 @@ class Input(
model_config = ConfigDict(coerce_numbers_to_str=True)

# natural set key is ordered pair (`in_asset_id``, `out_asset_id`)
in_asset_id: TId = Field(example="158456325028528675187087900673")
out_asset_id: TId = Field(example="158456325028528675187087900674")
in_asset_id: TId = Field(example="158456325028528675187087900673", default="158456325028528675187087900673")
out_asset_id: TId = Field(example="158456325028528675187087900674", default="158456325028528675187087900674")
# tendered amount DELTA
in_asset_amount: TAmount = Field(example="10000000")
in_asset_amount: TAmount = Field(example="1000000000000", default="1000000000000")
out_asset_amount: TAmount = Field(example="100")
"""
expected received amount LAMBDA
Expand Down

0 comments on commit ca15d31

Please sign in to comment.