diff options
| author | MarcoFalke <[email protected]> | 2018-08-13 16:13:29 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-08-24 08:34:38 -0400 |
| commit | ddddce0e46e73d4ca369f2ce9696231cc579e1f9 (patch) | |
| tree | b4242246762d8ff5c2351925ee8907b4dd232611 /src/wallet/coinselection.cpp | |
| parent | Merge #13634: ui: Compile boost::signals2 only once (diff) | |
| download | discoin-ddddce0e46e73d4ca369f2ce9696231cc579e1f9.tar.xz discoin-ddddce0e46e73d4ca369f2ce9696231cc579e1f9.zip | |
util: Replace boost::signals2 with std::function
Diffstat (limited to 'src/wallet/coinselection.cpp')
| -rw-r--r-- | src/wallet/coinselection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/coinselection.cpp b/src/wallet/coinselection.cpp index 3734ba66b..fdeb89553 100644 --- a/src/wallet/coinselection.cpp +++ b/src/wallet/coinselection.cpp @@ -3,9 +3,12 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <wallet/coinselection.h> + #include <util.h> #include <utilmoneystr.h> +#include <boost/optional.hpp> + // Descending order comparator struct { bool operator()(const OutputGroup& a, const OutputGroup& b) const |