A stale checkpoint could resurrect restored-away entities and drop new writes
restore_to_seq / delete_all left stale on-disk checkpoint
artifacts, so a later delta linked onto a stale base. Two failures at once:
restored-away entities came back, and new post-restore writes that
reused sequence numbers were silently dropped after the next boot.
Fixed structurally as the Tideline guarantee: delete checkpoint artifacts before truncating the WAL, fence detached writer threads with a monotonic checkpoint epoch, and delete any checkpoint the reject-guard discards on open. Two adversarial rounds; round 1 alone found six follow-on findings including a detached-writer TOCTOU.