1
The input of UTXO transaction being used is 10 pieces, total 0.0082 BTC. Broadcasting the fee at 0.000012 BTC (sendrawtransaction), the following error occurs.
insufficient priority
Is the fee setting not good? I do not know the cause.
1
The input of UTXO transaction being used is 10 pieces, total 0.0082 BTC. Broadcasting the fee at 0.000012 BTC (sendrawtransaction), the following error occurs.
insufficient priority
Is the fee setting not good? I do not know the cause.
1
That error means you did not provide a high enough transaction fee on your transaction.
Thank you for your comment, I am using bitcoin abc client, how can I calculate the fee? – kogane – 2019-01-29T00:09:39.197
Using the transaction you have now, get its size in kb. Then you can use the
estimatesmartfeecommand (read the help text for that command so you can use the correct arguments) to get a feerate in BCH/kb. Using that feerate, multiply it by the transaction size in kb that you got earlier. That's the fee you should pay. Then remake your transaction using that fee. – Andrew Chow – 2019-01-29T00:22:51.910Since we are using bitcoin-abc client vertion 0.18.5 and there is no
estimatesmartfee, i useestimatefeeto calculate it. Is it better to use useestimatefee? After calculating the fee usingestimatefee, it insufficient priority error – kogane – 2019-01-29T01:41:27.033Also, the calculation formula I use is below
` (estimatefee result * transaction size) / 1000 = fee (btc)` Is this calculation wrong? – kogane – 2019-01-29T01:41:35.717