Only return "initial block amount" on init, and treat high fees in empty blocks as overpaid.

This commit is contained in:
softsimon
2020-03-16 02:25:14 +07:00
parent abf74c1aaf
commit 8a5887e890
2 changed files with 10 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ class WebsocketHandler {
client.send(JSON.stringify({
'mempoolInfo': memPool.getMempoolInfo(),
'vBytesPerSecond': memPool.getVBytesPerSecond(),
'blocks': _blocks.slice(config.INITIAL_BLOCK_AMOUNT),
'blocks': _blocks.slice(Math.max(_blocks.length - config.INITIAL_BLOCK_AMOUNT, 0)),
'conversions': fiatConversion.getTickers()['BTCUSD'],
'mempool-blocks': mempoolBlocks.getMempoolBlocks(),
'git-commit': this.latestGitCommitHash