aboutsummaryrefslogtreecommitdiff
path: root/doc/developer-notes.md
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-04-04 19:55:44 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-04-05 08:42:15 +0200
commitfa5eabe72117f6e3704858e8d5b2c57a120258ed (patch)
treed211dad9c0328c1da3f04f090eb4e44d02560d78 /doc/developer-notes.md
parentad4bf8a94594e7fe424e409ba9474d91584bb78c (diff)
downloadbitcoin-fa5eabe72117f6e3704858e8d5b2c57a120258ed.tar.xz
refactor: Remove negative lock annotations from globals
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r--doc/developer-notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md
index 0a78cdff20..2130332eec 100644
--- a/doc/developer-notes.md
+++ b/doc/developer-notes.md
@@ -812,7 +812,7 @@ class ChainstateManager
{
public:
...
- bool ProcessNewBlock(...) EXCLUSIVE_LOCKS_REQUIRED(!::cs_main);
+ bool ProcessNewBlock(...) LOCKS_EXCLUDED(::cs_main);
...
}