mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 14:22:37 -03:00
806b0052c3
FundTransaction calls GetMinimumFee which, when the fee rate is absurdly high, quietly reduced the fee to -maxtxfee. Becaue an absurdly high fee rate is usually the result of a fat finger, aborting seems safer behavior.
6 lines
313 B
Markdown
6 lines
313 B
Markdown
Wallet changes
|
|
--------------
|
|
When creating a transaction with a fee above `-maxtxfee` (default 0.1 BTC),
|
|
the RPC commands `walletcreatefundedpsbt` and `fundrawtransaction` will now fail
|
|
instead of rounding down the fee. Beware that the `feeRate` argument is specified
|
|
in BTC per kilobyte, not satoshi per byte.
|