#!/usr/bin/env bash
# WEIGHT=5
# CHECK: Wrapper Finalize fully dispatches to V2 engine for V2 blocks (NF-1 / C6 / C11)
# This is stricter than the partial-dispatch we have today.
set -e
xdp="$PATIENT/consensus/XDPoS/xdpos.go"
[[ -f "$xdp" ]] || exit 1
awk '/^func \(c \*XDPoS\) Finalize\(/{flag=1; next} flag && /^}/{print; flag=0; next} flag' "$xdp" | \
  grep -qE '(EngineV2\.Finalize|c\.EngineV2\.Finalize)'
