Skip to content
This repository was archived by the owner on Sep 18, 2022. It is now read-only.

Commit 141e0ad

Browse files
committed
Full dump in status dump
1 parent 58c89eb commit 141e0ad

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

logic/bitcoind.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,13 @@ async function nodeStatusDump() {
152152
const blockchainInfo = await bitcoindService.getBlockChainInfo();
153153
const networkInfo = await bitcoindService.getNetworkInfo();
154154
const mempoolInfo = await bitcoindService.getMempoolInfo();
155+
const miningInfo = await bitcoindService.getMiningInfo();
156+
155157
return {
156158
blockchain_info: blockchainInfo.result,
157159
network_info: networkInfo.result,
158-
mempool: mempoolInfo.result
160+
mempool: mempoolInfo.result,
161+
mining_info: miningInfo.result
159162
}
160163
}
161164

0 commit comments

Comments
 (0)