Browse Source

[bugfix] save feeDelta instead of priorityDelta in DumpMempool

0.14
Alex Morcos 8 years ago
parent
commit
bd92f2481c
  1. 2
      src/validation.cpp

2
src/validation.cpp

@ -4202,7 +4202,7 @@ void DumpMempool(void) @@ -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…
Cancel
Save