Skip to content

Commit 1423dba

Browse files
morcosfurszy
authored andcommitted
[bugfix] save feeDelta instead of priorityDelta in DumpMempool
1 parent d97ace9 commit 1423dba

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
@@ -4156,7 +4156,7 @@ void DumpMempool(void)
41564156
{
41574157
LOCK(mempool.cs);
41584158
for (const auto &i : mempool.mapDeltas) {
4159-
mapDeltas[i.first] = i.second.first;
4159+
mapDeltas[i.first] = i.second.second;
41604160
}
41614161
vinfo = mempool.infoAll();
41624162
}

0 commit comments

Comments
 (0)