diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2017-01-23 10:31:28 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2017-01-23 10:42:36 -0800 |
commit | 71148b8947fe8b4d756822420a7f31c380159425 (patch) | |
tree | 9fb483cae4bb657ffdfd2c6435a61279cd0b5eed /src | |
parent | 727a79836035b02e82e31a3c941396146eabc207 (diff) | |
parent | bd92f2481c04db132555e151f4a57bb7a1c52ff1 (diff) |
Merge #9596: [bugfix] save feeDelta instead of priorityDelta in DumpMempool
bd92f24 [bugfix] save feeDelta instead of priorityDelta in DumpMempool (Alex Morcos)
Diffstat (limited to 'src')
-rw-r--r-- | src/validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 4fe03e4192..881292d613 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -4202,7 +4202,7 @@ void DumpMempool(void) { LOCK(mempool.cs); for (const auto &i : mempool.mapDeltas) { - mapDeltas[i.first] = i.second.first; + mapDeltas[i.first] = i.second.second; } vinfo = mempool.infoAll(); } |