bool isTombstonedAt(int height) { _ensureHeightIsKnown(height); final ripHeight = _data.tombstonedAtHeight ?? -1; if (height >= ripHeight) { return true; } return false; }