diff options
author | Carl Dong <contact@carldong.me> | 2020-08-25 17:17:22 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-01-28 14:15:26 -0500 |
commit | e0dc3057277c9576ddbfb8541599db0149e08bb6 (patch) | |
tree | db9dabeb5a4ddf34a06fdc3134177dd0344dc8f9 /src/test/fuzz/load_external_block_file.cpp | |
parent | 5f8cd7b3a527999512161956db4d718688cb956f (diff) |
validation: Move LoadExternalBlockFile to CChainState
[META] This commit should be followed up by removing the comments and
assertions meant only to show that the change is correct.
LoadExternalBlockFile mainly acts on CChainState.
Diffstat (limited to 'src/test/fuzz/load_external_block_file.cpp')
-rw-r--r-- | src/test/fuzz/load_external_block_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/load_external_block_file.cpp b/src/test/fuzz/load_external_block_file.cpp index 207ee586bc..95597bf082 100644 --- a/src/test/fuzz/load_external_block_file.cpp +++ b/src/test/fuzz/load_external_block_file.cpp @@ -27,5 +27,5 @@ FUZZ_TARGET_INIT(load_external_block_file, initialize_load_external_block_file) return; } FlatFilePos flat_file_pos; - LoadExternalBlockFile(Params(), fuzzed_block_file, fuzzed_data_provider.ConsumeBool() ? &flat_file_pos : nullptr); + ::ChainstateActive().LoadExternalBlockFile(Params(), fuzzed_block_file, fuzzed_data_provider.ConsumeBool() ? &flat_file_pos : nullptr); } |