aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2022-03-18 12:35:52 -0400
committerCarl Dong <contact@carldong.me>2022-04-19 14:36:18 -0400
commitf0a2fb3c5dbf3c4bec7faf934baff3e723734b3f (patch)
treef9ca702d34d9736f804eb3fc5a1a75208640d260 /src/validation.h
parenta4014021258319941716d6338c18667462a06280 (diff)
downloadbitcoin-f0a2fb3c5dbf3c4bec7faf934baff3e723734b3f.tar.xz
scripted-diff: Rename pindexBestHeader, fHavePruned
...to m_best_header and m_have_pruned -BEGIN VERIFY SCRIPT- find_regex="\bpindexBestHeader\b" \ && git grep -l -E "$find_regex" -- src \ | xargs sed -i -E "s@$find_regex@m_best_header@g" find_regex="\bfHavePruned\b" \ && git grep -l -E "$find_regex" -- src \ | xargs sed -i -E "s@$find_regex@m_have_pruned@g" -END VERIFY SCRIPT-
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h
index 7959766d1d..2e7ab42f88 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -881,7 +881,7 @@ public:
std::set<CBlockIndex*> m_failed_blocks;
/** Best header we've seen so far (used for getheaders queries' starting points). */
- CBlockIndex* pindexBestHeader = nullptr;
+ CBlockIndex* m_best_header = nullptr;
//! The total number of bytes available for us to use across all in-memory
//! coins caches. This will be split somehow across chainstates.