From b232e6564eb87ab0ebaece7c3917106ee403fbf3 Mon Sep 17 00:00:00 2001 From: Sarlor Date: Tue, 14 Aug 2018 17:52:04 +0800 Subject: [PATCH] mempool: Correct min relay tx fee comment to DCR. This corrects the comment for the MinRelayTxFee constant to correctly refer to DCR/kB instead of BTC/kB. --- mempool/mempool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mempool/mempool.go b/mempool/mempool.go index f2985b7b..e6e83855 100644 --- a/mempool/mempool.go +++ b/mempool/mempool.go @@ -158,7 +158,7 @@ type Policy struct { // of the max signature operations for a block. MaxSigOpsPerTx int - // MinRelayTxFee defines the minimum transaction fee in BTC/kB to be + // MinRelayTxFee defines the minimum transaction fee in DCR/kB to be // considered a non-zero fee. MinRelayTxFee dcrutil.Amount