Skip to content

Commit

Permalink
Merge #9596: [bugfix] save feeDelta instead of priorityDelta in DumpM…
Browse files Browse the repository at this point in the history
…empool

bd92f24 [bugfix] save feeDelta instead of priorityDelta in DumpMempool (Alex Morcos)
  • Loading branch information
sipa committed Jan 23, 2017
2 parents 727a798 + bd92f24 commit 71148b8
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 @@ -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();
}
Expand Down

0 comments on commit 71148b8

Please sign in to comment.