summarylogtreecommitdiffstats
path: root/grin-server.toml
diff options
context:
space:
mode:
Diffstat (limited to 'grin-server.toml')
-rw-r--r--grin-server.toml19
1 files changed, 14 insertions, 5 deletions
diff --git a/grin-server.toml b/grin-server.toml
index bebfec24c568..fa13189bcf26 100644
--- a/grin-server.toml
+++ b/grin-server.toml
@@ -96,12 +96,18 @@ seeding_type = "DNSSeed"
#how long a banned peer should stay banned
#ban_window = 10800
-#maximum number of peers
-#peer_max_count = 125
+#maximum number of inbound peer connections
+#peer_max_inbound_count = 128
-#preferred minimum number of peers (we'll actively keep trying to add peers
-#until we get to at least this number
-#peer_min_preferred_count = 8
+#maximum number of outbound peer connections
+#peer_max_outbound_count = 8
+
+#preferred minimum number of outbound peers (we'll actively keep trying to add peers
+#until we get to at least this number)
+#peer_min_preferred_outbound_count = 8
+
+#amount of incoming connections temporarily allowed to exceed peer_max_inbound_count
+#peer_listener_buffer_count = 8
# 15 = Bit flags for FULL_NODE
#This structure needs to be changed internally, to make it more configurable
@@ -148,6 +154,9 @@ aggregation_secs = 30
#dandelion stem probability (stem 90% of the time, fluff 10% of the time)
stem_probability = 90
+#always stem our (pushed via api) txs regardless of stem/fluff epoch (as per Dandelion++ paper)
+always_stem_our_txs = true
+
################################################
### STRATUM MINING SERVER CONFIGURATION ###