diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-02-16 14:01:00 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-02-16 14:01:14 +0100 |
| commit | 8743320d6cb31291c0786b33124209b76f6c1904 (patch) | |
| tree | 9d383afed19f5da6ecd0e90cf64550b86cb4f9d4 /src/txmempool.cpp | |
| parent | Merge #9771: Add missing cs_wallet lock that triggers new lock held assertion (diff) | |
| parent | [Trivial] Update comments referencing main.cpp (diff) | |
| download | discoin-8743320d6cb31291c0786b33124209b76f6c1904.tar.xz discoin-8743320d6cb31291c0786b33124209b76f6c1904.zip | |
Merge #9763: [Trivial] Update comments referencing main.cpp
00e623d [Trivial] Update comments referencing main.cpp (CryptAxe)
Diffstat (limited to 'src/txmempool.cpp')
| -rw-r--r-- | src/txmempool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 236527a2b..5842dd88d 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -395,7 +395,7 @@ bool CTxMemPool::addUnchecked(const uint256& hash, const CTxMemPoolEntry &entry, { NotifyEntryAdded(entry.GetSharedTx()); // Add to memory pool without checking anything. - // Used by main.cpp AcceptToMemoryPool(), which DOES do + // Used by AcceptToMemoryPool(), which DOES do // all the appropriate checks. LOCK(cs); indexed_transaction_set::iterator newit = mapTx.insert(entry).first; |