Skip to content

Commit 6c184c8

Browse files
committed
fix: maxReconnectDelay typo, improved desc, correct mempool tracer
1 parent 57be55c commit 6c184c8

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

cardano-lib/generic-log-config.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
TraceOptionForwarder = {
3838
connQueueSize = 64;
3939
disconnQueueSize = 128;
40-
maxReconnectDeplay = 30;
40+
maxReconnectDelay = 30;
4141
};
4242

4343
# Tracing options for node

cardano-lib/generic-tracer-config.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@
140140
# cardano-tracer will connect to.
141141
# contents = [
142142
# "/tmp/cardano-node-1.sock"
143-
# "/tmp/cardano-node-1.sock"
144-
# "/tmp/cardano-node-1.sock"
143+
# "/tmp/cardano-node-2.sock"
144+
# "/tmp/cardano-node-3.sock"
145145
# ];
146146
};
147147

@@ -165,7 +165,7 @@
165165
# as `JournalMode`.
166166
rotation = {
167167

168-
# rpFrequencySecs specifies rotation period, in seconds.
168+
# rpFrequencySecs specifies rotation check period, in seconds.
169169
rpFrequencySecs = 60;
170170

171171
# rpKeepFilesNum specifies the number of the log files that will be kept.

cardano-lib/mainnet-config.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ with builtins; {
3030
EnableP2P = true;
3131
PeerSharing = true;
3232

33-
TraceMempool = false;
3433
MaxKnownMajorProtocolVersion = 2;
3534

3635
# The consensus mode. If set to "GenesisMode", the `CheckpointsFile` and

cardano-lib/testnet-template/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"TraceOptionForwarder": {
3131
"connQueueSize": 64,
3232
"disconnQueueSize": 128,
33-
"maxReconnectDeplay": 30
33+
"maxReconnectDelay": 30
3434
},
3535
"TraceOptionMetricsPrefix": "cardano.node.metrics.",
3636
"TraceOptionPeerFrequency": 2000,

0 commit comments

Comments
 (0)