From 9615516b5120dbf2cb5e63bb19d5f241175e614d Mon Sep 17 00:00:00 2001
From: Brannon King <countprimes@gmail.com>
Date: Tue, 27 Jul 2021 07:56:19 -0400
Subject: [PATCH] [lbry] fix max fee rate

---
 rpcclient/rawtransactions.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rpcclient/rawtransactions.go b/rpcclient/rawtransactions.go
index 35038ed9..dd124de0 100644
--- a/rpcclient/rawtransactions.go
+++ b/rpcclient/rawtransactions.go
@@ -18,7 +18,7 @@ import (
 const (
 	// defaultMaxFeeRate is the default maximum fee rate in sat/KB enforced
 	// by bitcoind v0.19.0 or after for transaction broadcast.
-	defaultMaxFeeRate = btcutil.SatoshiPerBitcoin / 10
+	defaultMaxFeeRate = btcutil.SatoshiPerBitcoin / 2
 )
 
 // SigHashType enumerates the available signature hashing types that the