From e13b4febecbc379738fb9f4ea74c98de70d92e97 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-btcd.conf | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/doc.go b/doc.go index d98cd830..660b158d 100644 --- a/doc.go +++ b/doc.go @@ -82,6 +82,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) bitcoins using the CPU diff --git a/sample-btcd.conf b/sample-btcd.conf index 515a1fc9..ee873b5e 100644 --- a/sample-btcd.conf +++ b/sample-btcd.conf @@ -211,6 +211,14 @@ ; ------------------------------------------------------------------------------ ; 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