From 3bb96274632cc914e9fe7a97f5e029bd29187db5 Mon Sep 17 00:00:00 2001 From: Sebastian Falbesoner Date: Sat, 11 Sep 2021 12:54:50 +0200 Subject: [PATCH] refactor: remove unused boost header include in bitcoin-util.cpp This header was included since the introduction of bitcoin-util in commit 13762bcc9618138dd28b53c2031defdc9d762d26, but boost was actually never used (see `git log -S boost ./src/bitcoin-util.cpp`). --- src/bitcoin-util.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bitcoin-util.cpp b/src/bitcoin-util.cpp index b457e0b354d..a2f3fca26c2 100644 --- a/src/bitcoin-util.cpp +++ b/src/bitcoin-util.cpp @@ -22,8 +22,6 @@ #include #include -#include - static const int CONTINUE_EXECUTION=-1; const std::function G_TRANSLATION_FUN = nullptr;