From 9f88501d07db50dbc00b47d969bcb7aff2529f2f 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 d0f28c8a..3512ccb7 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