3
I'm running bitcoind for a service that works with quite small user withdraws most of the time. Recently I noticed that instead of the standard 0.0001 tx fee from the recent past, it already charges up to 0.0008 for some transactions which I find expensive for this specific use case. (I read about that update to dynamic fees but then forgot about it)
getinfo gives "paytxfee" : 0.00000000" by the way. I haven't explicitly set the fee in bitcoin.conf
So, if one doesn't want to take advantage of the dynamic fee but set a fixed one - How is best to do it? Just "bitcoin-cli settxfee 0.0001" or in the .conf file? Would it actually be enforced or it will still disregard it in some cases? - if it actually works to set it as fixed, how do you think that would affect the confirmation time? Will 0.0001 be fairly enough for the time being to get in the very next block?
Can you give the txid of such a transaction, so we can see its details? One possibility is that the transaction is larger than 1 kb (the standard fee is btc 0.0001 per kb). – Nate Eldredge – 2015-04-30T18:16:18.303
Yes, here is one https://blockchain.info/tx/3db46410c589383320dc0ab12cc884f8c36201f40c9bc57f4c8e18b1413b0759
This particular one is for bigger amount but still, since it's 1257 bytes should be able to be sent just fine for 0.0002 fee right?