diff options
| author | practicalswift <[email protected]> | 2018-04-25 22:57:18 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-05-05 08:11:05 +0200 |
| commit | cbba1d2da42a9c813c50ea3b3c13ec9a518bc147 (patch) | |
| tree | 37a7f16a114cde0d2fc65dafa5afa72deafb957e /src/rpc/blockchain.cpp | |
| parent | Merge #13163: Make it clear which functions that are intended to be translati... (diff) | |
| download | discoin-cbba1d2da42a9c813c50ea3b3c13ec9a518bc147.tar.xz discoin-cbba1d2da42a9c813c50ea3b3c13ec9a518bc147.zip | |
Add compile time checking for all ::mempool.cs runtime locking assertions
Diffstat (limited to 'src/rpc/blockchain.cpp')
| -rw-r--r-- | src/rpc/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index a50840950..a2d8ce155 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -383,7 +383,7 @@ static std::string EntryDescriptionString() " ... ]\n"; } -static void entryToJSON(UniValue &info, const CTxMemPoolEntry &e) +static void entryToJSON(UniValue &info, const CTxMemPoolEntry &e) EXCLUSIVE_LOCKS_REQUIRED(::mempool.cs) { AssertLockHeld(mempool.cs); |