diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-11-12 09:53:00 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-11-12 09:53:04 -0500 |
commit | 6d4b97cb1c21f9534b01fad037837b7966b82190 (patch) | |
tree | 9d11c79eda8662bec5c5178cc50da70338f18295 | |
parent | 80fdb6fad132166b10fbeb8615e3c5c591209e0b (diff) | |
parent | b1315241375211563e9ec00391c4ac5310e1146f (diff) |
Merge #17450: util: Add missing headers to util/fees.cpp
b1315241375211563e9ec00391c4ac5310e1146f util: Add missing headers to util/fees.cpp (Hennadii Stepanov)
Pull request description:
ACKs for top commit:
laanwj:
code review ACK b1315241375211563e9ec00391c4ac5310e1146f
MarcoFalke:
ACK b131524
jnewbery:
ACK b1315241375211563e9ec00391c4ac5310e1146f
Tree-SHA512: a1ad36bff12219912c6aaacd7d9dcbeccf0fa3373280fa6e804d7a4d267b485433d6e1c01134cfa6732d2fb30ec1ab4629dff6e4bea2fe4c1976180064a3c6ca
-rw-r--r-- | src/util/fees.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/fees.cpp b/src/util/fees.cpp index cf16d5e44f..41149888d7 100644 --- a/src/util/fees.cpp +++ b/src/util/fees.cpp @@ -3,8 +3,11 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. +#include <util/fees.h> + #include <policy/fees.h> +#include <map> #include <string> std::string StringForFeeReason(FeeReason reason) { |