diff options
| author | MarcoFalke <[email protected]> | 2019-11-12 09:53:00 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-11-12 09:53:04 -0500 |
| commit | 6d4b97cb1c21f9534b01fad037837b7966b82190 (patch) | |
| tree | 9d11c79eda8662bec5c5178cc50da70338f18295 /src | |
| parent | Merge #17442: fix Typo: "merkelRoot" -> "merkleRoot" (diff) | |
| parent | util: Add missing headers to util/fees.cpp (diff) | |
| download | discoin-6d4b97cb1c21f9534b01fad037837b7966b82190.tar.xz discoin-6d4b97cb1c21f9534b01fad037837b7966b82190.zip | |
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
Diffstat (limited to 'src')
| -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 cf16d5e44..41149888d 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) { |