display total mempool size from getmempoolinfo.usage instead of witness-discounted size from getmempoolinfo.bytes

This commit is contained in:
nymkappa 2023-09-20 16:47:05 -07:00 committed by nmfretz
parent 13310989d0
commit 7163f73f46

View File

@ -272,7 +272,7 @@ async function nodeStatusSummary() {
return { return {
difficulty: blockchainInfo.result.difficulty, difficulty: blockchainInfo.result.difficulty,
size: blockchainInfo.result.sizeOnDisk, size: blockchainInfo.result.sizeOnDisk,
mempool: mempoolInfo.result.bytes, mempool: mempoolInfo.result.usage,
connections: networkInfo.result.connections, connections: networkInfo.result.connections,
networkhashps: miningInfo.result.networkhashps networkhashps: miningInfo.result.networkhashps
}; };