diff options
author | w0xlt <94266259+w0xlt@users.noreply.github.com> | 2022-01-19 14:43:15 -0300 |
---|---|---|
committer | w0xlt <94266259+w0xlt@users.noreply.github.com> | 2022-01-19 14:43:15 -0300 |
commit | 1dfd31bc267c54144a7e62ad5a1a5860c032f4d7 (patch) | |
tree | a021c155784df1c1a08e51b6a1658e6da1e35aa4 /src/validation.h | |
parent | 887796a5ffcbafcd281b920f8d55fcb6e8347584 (diff) |
scripted-diff: rename m_cs_chainstate -> m_chainstate_mutex
-BEGIN VERIFY SCRIPT-
s() { sed -i 's/m_cs_chainstate/m_chainstate_mutex/g' $1; }
s src/validation.cpp
s src/validation.h
-END VERIFY SCRIPT-
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 160fffd048..ae3749bb47 100644 --- a/src/validation.h +++ b/src/validation.h @@ -536,7 +536,7 @@ protected: * the ChainState CriticalSection * A lock that must be held when modifying this ChainState - held in ActivateBestChain() */ - RecursiveMutex m_cs_chainstate; + RecursiveMutex m_chainstate_mutex; /** * Whether this chainstate is undergoing initial block download. |