From f57398bf360e9a256bc22990d776bdca0ff1ca0b Mon Sep 17 00:00:00 2001 From: Brannon King Date: Tue, 3 Aug 2021 22:10:26 -0700 Subject: [PATCH] [lbry] rpc: update defaultMaxFeeRate from 0.1 LBC to 0.5 LBC --- 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