diff options
author | TheCharlatan <seb.kung@gmail.com> | 2023-05-08 11:32:13 +0200 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-05-20 12:08:13 +0200 |
commit | 7d3b35004b039f2bd606bb46a540de7babdbc41e (patch) | |
tree | d79c4a23a3c8864b9648946793454bf618b67266 /src/qt/test/rpcnestedtests.cpp | |
parent | 7eee356c0a7fefd70c8de21689efa335f52a69ba (diff) |
refactor: Move system from util to common library
Since the kernel library no longer depends on the system file, move it
to the common library instead in accordance to the diagram in
doc/design/libraries.md.
Diffstat (limited to 'src/qt/test/rpcnestedtests.cpp')
-rw-r--r-- | src/qt/test/rpcnestedtests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/test/rpcnestedtests.cpp b/src/qt/test/rpcnestedtests.cpp index 669a05fe0f..72e8055425 100644 --- a/src/qt/test/rpcnestedtests.cpp +++ b/src/qt/test/rpcnestedtests.cpp @@ -4,12 +4,12 @@ #include <qt/test/rpcnestedtests.h> +#include <common/system.h> #include <interfaces/node.h> -#include <rpc/server.h> #include <qt/rpcconsole.h> +#include <rpc/server.h> #include <test/util/setup_common.h> #include <univalue.h> -#include <util/system.h> #include <QTest> |