#!/usr/bin/env bash
# WEIGHT=10
# CHECK: Apothem genesis hash is correct (CC-1)
# REF: params/config.go:40
# Real Apothem genesis: 0xbdea512b4f12ff1135ec92c00dc047ffb93890c2ea1aa0eefe9b013d80640075
# Placeholder pattern (failing): repeating-pattern that contains 'b5e0b5e0b5e0' or similar
set -e
config="$PATIENT/params/config.go"
[[ -f "$config" ]] || exit 1
# Pass: real hash present near XDCApothemGenesisHash
grep -A1 'XDCApothemGenesisHash' "$config" | grep -qE '0xbdea512b4f12ff1135ec92c00dc047ffb93890c2ea1aa0eefe9b013d80640075'
