File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -394,13 +394,11 @@ data SimCommand
394
394
{ seed :: Int
395
395
, configOptions :: ConfigOptions
396
396
, topologyOptions :: TopologyOptions
397
- , overrideUnlimitedBps :: Bytes
398
397
}
399
398
| SimShortLeios
400
399
{ seed :: Int
401
400
, configOptions :: ConfigOptions
402
401
, topologyOptions :: TopologyOptions
403
- , overrideUnlimitedBps :: Bytes
404
402
, emitControl :: Bool
405
403
, skipLog :: Bool
406
404
}
@@ -421,15 +419,13 @@ parserSimPraosDiffusion =
421
419
<$> parserSeed
422
420
<*> parserConfigOptions
423
421
<*> parserTopologyOptions
424
- <*> parserOverrideUnlimited
425
422
426
423
parserShortLeios :: Parser SimCommand
427
424
parserShortLeios =
428
425
SimShortLeios
429
426
<$> parserSeed
430
427
<*> parserConfigOptions
431
428
<*> parserTopologyOptions
432
- <*> parserOverrideUnlimited
433
429
<*> switch (long " log-control" <> help " Include control messages in log." )
434
430
<*> switch (long " no-log" <> help " Do not output event log." )
435
431
You can’t perform that action at this time.
0 commit comments