Skip to content

Commit 91771b3

Browse files
committedFeb 10, 2025
fix(simulation): remove option --override-unlimited-bandwidth
1 parent 1ae264a commit 91771b3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎simulation/src/Main.hs

-4
Original file line numberDiff line numberDiff line change
@@ -394,13 +394,11 @@ data SimCommand
394394
{ seed :: Int
395395
, configOptions :: ConfigOptions
396396
, topologyOptions :: TopologyOptions
397-
, overrideUnlimitedBps :: Bytes
398397
}
399398
| SimShortLeios
400399
{ seed :: Int
401400
, configOptions :: ConfigOptions
402401
, topologyOptions :: TopologyOptions
403-
, overrideUnlimitedBps :: Bytes
404402
, emitControl :: Bool
405403
, skipLog :: Bool
406404
}
@@ -421,15 +419,13 @@ parserSimPraosDiffusion =
421419
<$> parserSeed
422420
<*> parserConfigOptions
423421
<*> parserTopologyOptions
424-
<*> parserOverrideUnlimited
425422

426423
parserShortLeios :: Parser SimCommand
427424
parserShortLeios =
428425
SimShortLeios
429426
<$> parserSeed
430427
<*> parserConfigOptions
431428
<*> parserTopologyOptions
432-
<*> parserOverrideUnlimited
433429
<*> switch (long "log-control" <> help "Include control messages in log.")
434430
<*> switch (long "no-log" <> help "Do not output event log.")
435431

0 commit comments

Comments
 (0)