|
Title: Is there any max limit of a mempool? Post by: CoinLearn on December 13, 2016, 03:08:30 PM I mean 32mb/64mb/128mb beyond which it will crash or wont relay new Tx or remove old Tx to accept new one. If there is no such fixed size, I'd like to know the max limit of an average node...
Title: Re: Is there any max limit of a mempool? Post by: achow101 on December 13, 2016, 03:32:44 PM Bitcoin Core has a default max mempool of 300 MB, after which point it will start kicking transactions and increasing the minimum fee to get accepted.
Title: Re: Is there any max limit of a mempool? Post by: CoinLearn on December 13, 2016, 03:46:17 PM Bitcoin Core has a default max mempool of 300 MB, after which point it will start kicking transactions and increasing the minimum fee to get accepted. Thanks a Lot. Could u plz point me to the relevant part of the code in Github? Title: Re: Is there any max limit of a mempool? Post by: achow101 on December 13, 2016, 04:03:00 PM Bitcoin Core has a default max mempool of 300 MB, after which point it will start kicking transactions and increasing the minimum fee to get accepted. Thanks a Lot. Could u plz point me to the relevant part of the code in Github? Title: Re: Is there any max limit of a mempool? Post by: shorena on December 15, 2016, 08:07:31 AM Bitcoin Core has a default max mempool of 300 MB, after which point it will start kicking transactions and increasing the minimum fee to get accepted. Thanks a Lot. Could u plz point me to the relevant part of the code in Github? In case you want to change that behaviour you dont have to modify the source. You can use the maxmempool setting (either pass at start or via .conf file). |