We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c86093c commit 77d8016Copy full SHA for 77d8016
simulation/src/LeiosProtocol/Config.hs
@@ -188,7 +188,10 @@ configToEncodingWith getter = pairs . mconcat . configToKVsWith getter
188
configToKVsWith :: KeyValue e kv => Getter Config -> Config -> [kv]
189
configToKVsWith getter cfg =
190
catMaybes
191
- [ get @"leiosStageLengthSlots" getter cfg
+ [ get @"relayStrategy" getter cfg
192
+ , get @"tcpCongestionControl" getter cfg
193
+ , get @"multiplexMiniProtocols" getter cfg
194
+ , get @"leiosStageLengthSlots" getter cfg
195
, get @"leiosStageActiveVotingSlots" getter cfg
196
, get @"leiosVoteSendRecvStages" getter cfg
197
, get @"txGenerationDistribution" getter cfg
0 commit comments