Skip to content

Commit

Permalink
[bugfix] save feeDelta instead of priorityDelta in DumpMempool
Browse files Browse the repository at this point in the history
  • Loading branch information
morcos authored and furszy committed Feb 24, 2021
1 parent d97ace9 commit 1423dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4156,7 +4156,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();
}
Expand Down

0 comments on commit 1423dba

Please sign in to comment.