mirror of
https://github.com/mempool/mempool.git
synced 2025-01-17 18:52:34 +01:00
Bugfix: Incoming transactions not parsed properly.
This commit is contained in:
parent
98c398272c
commit
774893f2fc
@ -151,7 +151,7 @@ class WebsocketHandler {
|
||||
if (client['want-stats']) {
|
||||
response['mempoolInfo'] = mempoolInfo;
|
||||
response['vBytesPerSecond'] = vBytesPerSecond;
|
||||
response['transactions'] = newTransactions.splice(0, 6).map((tx) => Common.stripTransaction(tx));
|
||||
response['transactions'] = newTransactions.slice(0, 6).map((tx) => Common.stripTransaction(tx));
|
||||
}
|
||||
|
||||
if (client['want-mempool-blocks']) {
|
||||
|
Loading…
Reference in New Issue
Block a user