Skip to content

Commit

Permalink
Send the mempool size in MB instead of MvB, since the UI shows MB unit (
Browse files Browse the repository at this point in the history
  • Loading branch information
nymkappa committed Aug 23, 2023
1 parent 01ac643 commit 3b91161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logic/bitcoind.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ async function nodeStatusSummary() {
return {
difficulty: blockchainInfo.result.difficulty,
size: blockchainInfo.result.sizeOnDisk,
mempool: mempoolInfo.result.bytes,
mempool: mempoolInfo.result.usage,
connections: networkInfo.result.connections,
networkhashps: miningInfo.result.networkhashps
};
Expand Down

0 comments on commit 3b91161

Please sign in to comment.