aboutsummaryrefslogtreecommitdiff
path: root/src/node
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2022-05-25 14:55:44 -0400
committerCarl Dong <contact@carldong.me>2022-05-31 14:18:31 -0400
commit7d03feef8156ef37a4efa01dc591467bc7d957bf (patch)
treef8651a71516c604fa19b91706882d187e9a7c02d /src/node
parenteeb4fc20c578b1e428a92d64cc9f8f903a677580 (diff)
downloadbitcoin-7d03feef8156ef37a4efa01dc591467bc7d957bf.tar.xz
kernel: Introduce empty and unused kernel::Context
[META] In the next commit, we will move the init::{Set,Unset}Globals logic into this struct. Co-Authored-By: Ryan Ofsky <ryan@ofsky.org>
Diffstat (limited to 'src/node')
-rw-r--r--src/node/context.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/node/context.h b/src/node/context.h
index 91ba456219..31be308787 100644
--- a/src/node/context.h
+++ b/src/node/context.h
@@ -5,6 +5,8 @@
#ifndef BITCOIN_NODE_CONTEXT_H
#define BITCOIN_NODE_CONTEXT_H
+#include <kernel/context.h>
+
#include <cassert>
#include <functional>
#include <memory>
@@ -39,6 +41,8 @@ namespace node {
//! any member functions. It should just be a collection of references that can
//! be used without pulling in unwanted dependencies or functionality.
struct NodeContext {
+ //! libbitcoin_kernel context
+ std::unique_ptr<kernel::Context> kernel;
//! Init interface for initializing current process and connecting to other processes.
interfaces::Init* init{nullptr};
std::unique_ptr<AddrMan> addrman;