Skip to content

Commit 77d8016

Browse files
committed
fix(simulation): add new parameters to ToJSON as well
1 parent c86093c commit 77d8016

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

simulation/src/LeiosProtocol/Config.hs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,10 @@ configToEncodingWith getter = pairs . mconcat . configToKVsWith getter
188188
configToKVsWith :: KeyValue e kv => Getter Config -> Config -> [kv]
189189
configToKVsWith getter cfg =
190190
catMaybes
191-
[ get @"leiosStageLengthSlots" getter cfg
191+
[ get @"relayStrategy" getter cfg
192+
, get @"tcpCongestionControl" getter cfg
193+
, get @"multiplexMiniProtocols" getter cfg
194+
, get @"leiosStageLengthSlots" getter cfg
192195
, get @"leiosStageActiveVotingSlots" getter cfg
193196
, get @"leiosVoteSendRecvStages" getter cfg
194197
, get @"txGenerationDistribution" getter cfg

0 commit comments

Comments
 (0)