btcd
btcd copied to clipboard
Switch AllowHighFee to MaxFeeRate
After commit https://github.com/bitcoin/bitcoin/commit/c033c4b5cef89a654e4d9d5c5f9bd823871b068b bitcoin switched allowHighFee to maxFeeRate on sendrawtransaction rpc command.
This PR switches AllowHighFees to MaxFeeRate as well.
Seems we also need to update the btcd
server as well. Otherwise, we won't be able to respond to this new request.
Thanks for reviewing.
I updated as requested.
Thanks for pointing that Roasbeef. I moved the maxFeeRate to the ProcessTransaction
method. Believe this looks better and there is no need of txindex
, anymore.
Also fixed the others comments
@jcvernaleo (as per #1530)
- Low priority
- Bug (because RPC is outdated)
- Outdated
@vctt94 Can you please rebase this PR on latest master? Let's try to have dual compatibility, following the fixes to the sendrawtransaction
command done in #1659.