Skip to content

Commit c16cdab

Browse files
committed
Settings text.
1 parent 49c0b61 commit c16cdab

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

data/bn.cfg

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,15 @@ bip90 = true
152152
[node]
153153
# The time to wait for a requested block, defaults to 60.
154154
block_latency_seconds = 60
155-
# Disable notifications when top block older than this, defaults to 24 (0 disables).
155+
# Disable relay when top block age exceeds, defaults to 24 (0 disables).
156156
notify_limit_hours = 24
157-
# The minimum fee per byte required for transaction acceptance, defaults to 1.
157+
# The minimum fee per byte, cumulative for conflicts, defaults to 1.
158158
byte_fee_satoshis = 1
159-
# Request that peers relay transactions, defaults to false.
160-
relay_transactions = false
159+
# The minimum fee per sigop, additional to byte fee, defaults to 100.
160+
sigop_fee_satoshis = 100
161+
# The minimum output value, defaults to 500.
162+
minimum_output_satoshis = 500
163+
# Request that peers relay transactions, defaults to true.
164+
relay_transactions = true
161165
# Request transactions on each channel start, defaults to true.
162166
refresh_transactions = true

src/parser.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,13 @@ options_metadata parser::load_settings()
414414
/* Internally this is blockchain, but it is conceptually a node setting. */
415415
"node.notify_limit_hours",
416416
value<uint32_t>(&configured.chain.notify_limit_hours),
417-
"Disable notifications when top block older than this, defaults to 24 (0 disables)."
417+
"Disable relay when top block age exceeds, defaults to 24 (0 disables)."
418418
)
419419
(
420420
/* Internally this is blockchain, but it is conceptually a node setting. */
421421
"node.byte_fee_satoshis",
422422
value<float>(&configured.chain.byte_fee_satoshis),
423-
"The minimum fee per byte required for transaction acceptance, defaults to 1."
423+
"The minimum fee per byte, cumulative for conflicts, defaults to 1."
424424
)
425425
(
426426
/* Internally this is blockchain, but it is conceptually a node setting. */
@@ -435,7 +435,7 @@ options_metadata parser::load_settings()
435435
"The minimum output value, defaults to 500."
436436
)
437437
(
438-
/* Internally this network, but it is conceptually a node setting. */
438+
/* Internally this is network, but it is conceptually a node setting. */
439439
"node.relay_transactions",
440440
value<bool>(&configured.network.relay_transactions),
441441
"Request that peers relay transactions, defaults to false."

0 commit comments

Comments
 (0)