[bugfix] save feeDelta instead of priorityDelta in DumpMempool

pull/9596/head
Alex Morcos 8 years ago
parent 82274c02ed
commit bd92f2481c

@ -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…
Cancel
Save