Add missing fs.h includes

The inclusion of this header should not depend on the inclusion of other
headers that include fs.h themselves.
This commit is contained in:
TheCharlatan
2023-03-15 20:07:19 +01:00
parent b202b3dd63
commit 106b46d9d2
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,8 @@
#ifndef BITCOIN_IPC_PROCESS_H
#define BITCOIN_IPC_PROCESS_H
#include <fs.h>
#include <memory>
#include <string>

View File

@@ -16,6 +16,7 @@
#include <tinyformat.h>
#include <txdb.h>
#include <uint256.h>
#include <fs.h>
#include <util/time.h>
#include <util/translation.h>
#include <validation.h>