Skip to content

Commit bd92f24

Browse files
committed
[bugfix] save feeDelta instead of priorityDelta in DumpMempool
1 parent 82274c0 commit bd92f24

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)