Browse Source

Merge #9596: [bugfix] save feeDelta instead of priorityDelta in DumpMempool

bd92f24 [bugfix] save feeDelta instead of priorityDelta in DumpMempool (Alex Morcos)
0.14
Pieter Wuille 8 years ago
parent
commit
71148b8947
No known key found for this signature in database
GPG Key ID: DBA1A67379A1A931
  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