From fa59ad5130d732027d01b8aac04b88326b81ac5b Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Thu, 4 Mar 2021 08:40:11 +0100 Subject: [PATCH] fuzz: Add missing include (test/util/setup_common.h) --- src/test/fuzz/socks5.cpp | 3 ++- src/test/fuzz/torcontrol.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/test/fuzz/socks5.cpp b/src/test/fuzz/socks5.cpp index 123ee042ee6..e5cc4cabe54 100644 --- a/src/test/fuzz/socks5.cpp +++ b/src/test/fuzz/socks5.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020 The Bitcoin Core developers +// Copyright (c) 2020-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -6,6 +6,7 @@ #include #include #include +#include #include #include diff --git a/src/test/fuzz/torcontrol.cpp b/src/test/fuzz/torcontrol.cpp index b7a42ea7f47..a97d3962bfc 100644 --- a/src/test/fuzz/torcontrol.cpp +++ b/src/test/fuzz/torcontrol.cpp @@ -1,10 +1,11 @@ -// Copyright (c) 2020 The Bitcoin Core developers +// Copyright (c) 2020-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include +#include #include #include