Skip to content

Commit

Permalink
feat: Remove unnecessary extra price level
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMcL committed Aug 25, 2023
1 parent f7d8620 commit 37d7360
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vega_sim/scenario/common/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,9 @@ def __init__(
self.initial_mint = (
initial_mint
if initial_mint is not None
else (2 * commitment_amount) if commitment_amount is not None else 100
else (2 * commitment_amount)
if commitment_amount is not None
else 100
)

self.market_name = market_name
Expand Down

0 comments on commit 37d7360

Please sign in to comment.