mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-03-11 05:03:31 +00:00
Merge #9596: [bugfix] save feeDelta instead of priorityDelta in DumpMempool
bd92f24 [bugfix] save feeDelta instead of priorityDelta in DumpMempool (Alex Morcos)
This commit is contained in:
commit
71148b8947
@ -4202,7 +4202,7 @@ void DumpMempool(void)
|
|||||||
{
|
{
|
||||||
LOCK(mempool.cs);
|
LOCK(mempool.cs);
|
||||||
for (const auto &i : mempool.mapDeltas) {
|
for (const auto &i : mempool.mapDeltas) {
|
||||||
mapDeltas[i.first] = i.second.first;
|
mapDeltas[i.first] = i.second.second;
|
||||||
}
|
}
|
||||||
vinfo = mempool.infoAll();
|
vinfo = mempool.infoAll();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user