refactor: Remove negative lock annotations from globals

This commit is contained in:
MarcoFalke
2021-04-04 19:55:44 +02:00
parent ad4bf8a945
commit fa5eabe721
6 changed files with 8 additions and 8 deletions

View File

@@ -812,7 +812,7 @@ class ChainstateManager
{
public:
...
bool ProcessNewBlock(...) EXCLUSIVE_LOCKS_REQUIRED(!::cs_main);
bool ProcessNewBlock(...) LOCKS_EXCLUDED(::cs_main);
...
}