diff options
author | Anthony Towns <aj@erisian.com.au> | 2023-11-15 13:07:28 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2023-11-18 03:01:03 +1000 |
commit | bbd4646a2ef514c31570ca9d1475fc9ddb35bdfd (patch) | |
tree | d086146fd4679d4f53629eaa3910805653d564e8 /src/validation.h | |
parent | c72ddf04db95a94e91939d46d13ab6a46fefb4be (diff) |
blockstorage: switch from CAutoFile to AutoFile
Also bump includes per suggestions from iwyu.
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index e669ec46d5..7473bcbc3b 100644 --- a/src/validation.h +++ b/src/validation.h @@ -1137,7 +1137,7 @@ public: * (only used for reindex) * */ void LoadExternalBlockFile( - CAutoFile& file_in, + AutoFile& file_in, FlatFilePos* dbp = nullptr, std::multimap<uint256, FlatFilePos>* blocks_with_unknown_parent = nullptr); |