mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-13 06:03:54 +01:00
[bugfix] save feeDelta instead of priorityDelta in DumpMempool
This commit is contained in:
@@ -4202,7 +4202,7 @@ void DumpMempool(void)
|
||||
{
|
||||
LOCK(mempool.cs);
|
||||
for (const auto &i : mempool.mapDeltas) {
|
||||
mapDeltas[i.first] = i.second.first;
|
||||
mapDeltas[i.first] = i.second.second;
|
||||
}
|
||||
vinfo = mempool.infoAll();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user