MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / IsRemoved

Method IsRemoved

src/txgraph.cpp:596–596  ·  view source on GitHub ↗

Check if this Locator is removed. */

Source from the content-addressed store, hash-verified

594 bool IsMissing() const noexcept { return cluster == nullptr && index == 0; }
595 /** Check if this Locator is removed. */
596 bool IsRemoved() const noexcept { return cluster == nullptr && index == DepGraphIndex(-1); }
597 /** Check if this Locator is present (in some Cluster). */
598 bool IsPresent() const noexcept { return cluster != nullptr; }
599 };

Callers 4

UnlinkRefMethod · 0.80
ClearLocatorMethod · 0.80
FindClusterAndLevelMethod · 0.80
SanityCheckMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected