@@ -346,11 +346,6 @@ options_metadata parser::load_settings()
346
346
value<uint32_t >(&configured.chain .reorganization_limit ),
347
347
" The maximum reorganization depth, defaults to 256 (0 for unlimited)."
348
348
)
349
- (
350
- " blockchain.block_version" ,
351
- value<uint32_t >(&configured.chain .block_version ),
352
- " The block version for block creation and transaction pool validation, defaults to 4."
353
- )
354
349
(
355
350
" blockchain.checkpoint" ,
356
351
value<config::checkpoint::list>(&configured.chain .checkpoints ),
@@ -361,7 +356,7 @@ options_metadata parser::load_settings()
361
356
(
362
357
" fork.easy_blocks" ,
363
358
value<bool >(&configured.chain .easy_blocks ),
364
- " Allow minimum difficulty blocks, defaults to false (use true for testnet) ."
359
+ " Allow minimum difficulty blocks, defaults to false."
365
360
)
366
361
(
367
362
" fork.bip16" ,
@@ -406,24 +401,36 @@ options_metadata parser::load_settings()
406
401
// // "The time limit for block response during initial block download, defaults to 5."
407
402
// //)
408
403
(
409
- " node.block_poll_seconds " ,
410
- value<uint32_t >(&configured.node .block_poll_seconds ),
411
- " The time period for block polling after initial block download , defaults to 1 (0 disables) ."
404
+ " node.block_latency_seconds " ,
405
+ value<uint32_t >(&configured.node .block_latency_seconds ),
406
+ " The time to wait for a requested block, defaults to 60 ."
412
407
)
413
408
(
414
409
/* Internally this is blockchain, but it is conceptually a node setting. */
415
- " node.minimum_byte_fee_satoshis" ,
416
- value<float >(&configured.chain .minimum_byte_fee_satoshis ),
417
- " The minimum fee per byte required for transaction acceptance, defaults to 1."
410
+ " node.notify_limit_hours" ,
411
+ value<uint32_t >(&configured.chain .notify_limit_hours ),
412
+ " Disable relay when top block age exceeds, defaults to 24 (0 disables)."
413
+ )
414
+ (
415
+ /* Internally this is blockchain, but it is conceptually a node setting. */
416
+ " node.byte_fee_satoshis" ,
417
+ value<float >(&configured.chain .byte_fee_satoshis ),
418
+ " The minimum fee per byte, cumulative for conflicts, defaults to 1."
419
+ )
420
+ (
421
+ /* Internally this is blockchain, but it is conceptually a node setting. */
422
+ " node.sigop_fee_satoshis" ,
423
+ value<float >(&configured.chain .sigop_fee_satoshis ),
424
+ " The minimum fee per sigop, additional to byte fee, defaults to 100."
425
+ )
426
+ (
427
+ /* Internally this is blockchain, but it is conceptually a node setting. */
428
+ " node.minimum_output_satoshis" ,
429
+ value<uint64_t >(&configured.chain .minimum_output_satoshis ),
430
+ " The minimum output value, defaults to 500."
418
431
)
419
- // //(
420
- // // /* Internally this blockchain, but it is conceptually a node setting. */
421
- // // "node.reject_conflicts",
422
- // // value<bool>(&configured.chain.reject_conflicts),
423
- // // "Retain only the first seen of conflicting transactions, defaults to true."
424
- // //)
425
432
(
426
- /* Internally this network, but it is conceptually a node setting. */
433
+ /* Internally this is network, but it is conceptually a node setting. */
427
434
" node.relay_transactions" ,
428
435
value<bool >(&configured.network .relay_transactions ),
429
436
" Request that peers relay transactions, defaults to false."
0 commit comments