5
1
I am using bitcoind json rpc api to send bitcoin to multiple bitcoin addresses. I am using sendrawtransaction. When i have 24 unconfirmed payments sent from my account, i can't send anymore because i get this error :
64: too-long-mempool-chain
I have increased the maxmempool to 1500 but it still doesn't fix it.
root@B2:~# bitcoin-cli getmempoolinfo
{
"size": 3946,
"bytes": 1789073,
"usage": 6043088,
"maxmempool": 1500000000,
"mempoolminfee": 0.00000000
}
I use Ubuntu on a 32GB RAM , 4TB HDD server.
Any ideas on how to fix it ? I want to be able to create for example 300 unconfirmed transactions and not to receive that error.
1Have you tried
-limitancestorcountand/or-limitdescedantcount? – Nate Eldredge – 2017-09-05T16:53:59.637No. Do i have to put that into the bitcoin.conf ? Thanks – Adrian – 2017-09-05T17:17:23.707
Either in bitcoin.conf or on the command line. These are debug/testing type options so if you want to know more you probably have to read the source code. – Nate Eldredge – 2017-09-05T18:02:11.803