From baef004efd397dd4e82f3f6f8a9692c054d8c8ea Mon Sep 17 00:00:00 2001 From: David Hill Date: Mon, 13 Jul 2015 12:52:17 -0400 Subject: [PATCH] Document limitfreerelay and norelaypriority options. --- doc.go | 2 ++ sample-dcrd.conf | 15 +++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/doc.go b/doc.go index 5ee01762..8b37d2e3 100644 --- a/doc.go +++ b/doc.go @@ -83,6 +83,8 @@ Application Options: --limitfreerelay= Limit relay of transactions with no transaction fee to the given amount in thousands of bytes per minute (15) + --norelaypriority Do not require free or low-fee transactions to have + high priority for relaying --maxorphantx= Max number of orphan transactions to keep in memory (1000) --generate= Generate (mine) decreds using the CPU diff --git a/sample-dcrd.conf b/sample-dcrd.conf index e251f7ef..7e15b7d8 100644 --- a/sample-dcrd.conf +++ b/sample-dcrd.conf @@ -200,6 +200,21 @@ ; norpc=1 +; ------------------------------------------------------------------------------ +; Mempool Settings - The following options +; ------------------------------------------------------------------------------ + +; Rate-limit free transactions to the value 15 * 1000 bytes per +; minute. +; limitfreerelay=15 + +; Require high priority for relaying free or low-fee transactions. +; norelaypriority=0 + +; Limit orphan transaction pool to 1000 transactions. +; maxorphantx=1000 + + ; ------------------------------------------------------------------------------ ; Coin Generation (Mining) Settings - The following options control the ; generation of block templates used by external mining applications through RPC