mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
[bugfix] save feeDelta instead of priorityDelta in DumpMempool
This commit is contained in:
parent
82274c02ed
commit
bd92f2481c
1 changed files with 1 additions and 1 deletions
|
|
@ -4202,7 +4202,7 @@ void DumpMempool(void)
|
||||||
{
|
{
|
||||||
LOCK(mempool.cs);
|
LOCK(mempool.cs);
|
||||||
for (const auto &i : mempool.mapDeltas) {
|
for (const auto &i : mempool.mapDeltas) {
|
||||||
mapDeltas[i.first] = i.second.first;
|
mapDeltas[i.first] = i.second.second;
|
||||||
}
|
}
|
||||||
vinfo = mempool.infoAll();
|
vinfo = mempool.infoAll();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue