Setting minrelaytxfee=100 in bitcoin.conf gives the following error on start up:-

Not sure how setting it to LOWER than the default can cause a "too high" error.
Setting minrelaytxfee=100 in bitcoin.conf gives the following error on start up:-

Not sure how setting it to LOWER than the default can cause a "too high" error.
100 BTC/kvB seems high
100 BTC/kvB seems high
but the default is 1000 - and this surely does not mean 1000 BTC/kvB
default value for minrelaytxfee is 0.00001
minrelaytxfee is FormatMoney(DEFAULT_MIN_RELAY_TX_FEE))
https://github.com/bitcoin/bitcoin/blob/e9d6eb1b8071805cec1cc4e1352a13a7adc55ca8/src/init.cpp#L530
DEFAULT_MIN_RELAY_TX_FEE is 1000
FormatMoney(1000) is 0.00001
COIN = 100000000
quotient = 0
remainder = 1000
%08d = 00001000
%d = 0
Before trim = 0.00001000
After trim = 0.00001
Right, the default is 0.0001 BTC/kvB
$ ./src/bitcoind -h | grep -A2 minrelay
-minrelaytxfee=<amt>
Fees (in BTC/kvB) smaller than this are considered zero fee for
relaying, mining and transaction creation (default: 0.00001)