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
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue