2
1
A bit of a conundrum interpreting the results from "bitcoin-cli getmempoolinfo".
Straight from https://chainquery.com/bitcoin-api/getmempoolinfo:
getmempoolinfo
Returns details on the active state of the TX memory pool.
Result:
{
"size": xxxxx, (numeric) Current tx count
"bytes": xxxxx, (numeric) Sum of all tx sizes
"usage": xxxxx, (numeric) Total memory usage for the mempool
"maxmempool": xxxxx, (numeric) Maximum memory usage for the mempool
"mempoolminfee": xxxxx (numeric) Minimum fee for tx to be accepted
}*
Cool! So "size" returns the number of transactions in the memory pool! But the numbers don't add up. Straight from the same page:
"result": {
"size": 9178,
"bytes": 100859918,
"usage": 216557216,
"maxmempool": 300000000,
"mempoolminfee": 0.00001070
},
"error": null,
"id": null*
Doing the math, "bytes" divided by "size" equals 10,989 bytes/transaction. I would expect sometime on the order of ~400 bytes/transaction. Hence my conundrum.
What is the question in this post? – Comodore – 2016-05-29T20:07:58.890
I am trying to understand the output from "bitcoin-cli getmempoolinfo". The numbers don't jibe. If there are 9178 transactions in the memory pool, representing 100,859,918 bytes, then each transaction is ~10KB. That is 20x larger than expected. How does one interpret the numbers? – Pressed250 – 2016-05-30T03:46:16.120