Skip to content

Commit 3b2a26c

Browse files
sipacodablock
authored andcommitted
Merge bitcoin#9596: [bugfix] save feeDelta instead of priorityDelta in DumpMempool
bd92f24 [bugfix] save feeDelta instead of priorityDelta in DumpMempool (Alex Morcos)
1 parent 119c3fe commit 3b2a26c

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
@@ -4529,7 +4529,7 @@ void DumpMempool(void)
45294529
{
45304530
LOCK(mempool.cs);
45314531
for (const auto &i : mempool.mapDeltas) {
4532-
mapDeltas[i.first] = i.second.first;
4532+
mapDeltas[i.first] = i.second.second;
45334533
}
45344534
vinfo = mempool.infoAll();
45354535
}

0 commit comments

Comments
 (0)