aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjors Provoost <sjors@sprovoost.nl>2024-06-25 13:28:36 +0200
committerSjors Provoost <sjors@sprovoost.nl>2024-06-26 12:24:47 +0200
commit83a9bef0e2acad7655e23d30e1c52412f380d93d (patch)
treea75139bc6a9b4b2498fca4224c52247028466cf4
parent2cd7c6bd939e4e37b00b5b822b62eb933f720dc6 (diff)
downloadbitcoin-83a9bef0e2acad7655e23d30e1c52412f380d93d.tar.xz
Add missing include for mining interface
Needed for std::unique_ptr
-rw-r--r--src/interfaces/mining.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/mining.h b/src/interfaces/mining.h
index b96881f67c..1f603399bf 100644
--- a/src/interfaces/mining.h
+++ b/src/interfaces/mining.h
@@ -5,6 +5,7 @@
#ifndef BITCOIN_INTERFACES_MINING_H
#define BITCOIN_INTERFACES_MINING_H
+#include <memory>
#include <optional>
#include <uint256.h>