diff options
author | glozow <gloriajzhao@gmail.com> | 2024-07-23 12:28:18 +0100 |
---|---|---|
committer | glozow <gloriajzhao@gmail.com> | 2024-07-24 10:38:35 +0100 |
commit | 7cc5ac5a674f31af2ac7e5b5842e1c1aeb9e6744 (patch) | |
tree | c3f62710e569d5d2ab39b5b04778b4e3f4d4960b | |
parent | 6f49548670d5ab12a963c0ada3b315c544b95e2e (diff) |
[doc] TxOrphanage is no longer thread-safe
-rw-r--r-- | src/txorphanage.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/txorphanage.h b/src/txorphanage.h index 207b79e009..f3f73ce0f2 100644 --- a/src/txorphanage.h +++ b/src/txorphanage.h @@ -18,6 +18,7 @@ * Since we cannot distinguish orphans from bad transactions with * non-existent inputs, we heavily limit the number of orphans * we keep and the duration we keep them for. + * Not thread-safe. Requires external synchronization. */ class TxOrphanage { public: |