isTombstonedAt method

bool isTombstonedAt(
  1. int height
)

Implementation

bool isTombstonedAt(int height) {
  _ensureHeightIsKnown(height);

  final ripHeight = _data.tombstonedAtHeight ?? -1;

  if (height >= ripHeight) {
    return true;
  }
  return false;
}