diff options
author | Carl Dong <contact@carldong.me> | 2022-03-10 22:13:58 -0500 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-03-15 16:43:31 +0100 |
commit | 382b692a503355df7347efd9c128aff465b5583e (patch) | |
tree | 8437d33c9cd659a3663df4e2dea064284e326fe2 /src/validation.cpp | |
parent | edabbc78a3bc272b2b802e1dbab73d6ed8e31e96 (diff) |
Split non/kernel chainparams
Moves chainparams code not using the ArgsManager to the kernel.
Subsequently use the kernel chainparams header now where possible in
order to further decouple chainparams call sites from gArgs.
Diffstat (limited to 'src/validation.cpp')
-rw-r--r-- | src/validation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index f3c0401c0f..6dff36649c 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -22,6 +22,7 @@ #include <flatfile.h> #include <fs.h> #include <hash.h> +#include <kernel/chainparams.h> #include <kernel/mempool_entry.h> #include <logging.h> #include <logging/timer.h> |