Skip to content

Commit 71148b8

Browse files
committed
Merge #9596: [bugfix] save feeDelta instead of priorityDelta in DumpMempool
bd92f24 [bugfix] save feeDelta instead of priorityDelta in DumpMempool (Alex Morcos)
2 parents 727a798 + bd92f24 commit 71148b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/validation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4202,7 +4202,7 @@ void DumpMempool(void)
42024202
{
42034203
LOCK(mempool.cs);
42044204
for (const auto &i : mempool.mapDeltas) {
4205-
mapDeltas[i.first] = i.second.first;
4205+
mapDeltas[i.first] = i.second.second;
42064206
}
42074207
vinfo = mempool.infoAll();
42084208
}

0 commit comments

Comments
 (0)