0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

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
No known key found for this signature in database
GPG key ID: 9B79B45691DB4173
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>