Archive legacy status docs and canonicalize genesis entrypoints

This commit is contained in:
defiQUG
2026-04-13 21:45:16 -07:00
parent 7517869ea6
commit 79750d92e6
288 changed files with 757 additions and 1066 deletions

View File

@@ -112,11 +112,11 @@ if [ -f "config/genesis.json" ]; then
((ERRORS++))
fi
# Check IBFT configuration
if grep -q "ibft2" config/genesis.json || grep -q "ibft" config/genesis.json; then
log_success "✅ IBFT consensus configured"
# Check consensus configuration
if grep -q "qbft" config/genesis.json || grep -q "ibft2" config/genesis.json; then
log_success "✅ QBFT-compatible consensus configured"
else
log_error "❌ IBFT consensus not found in genesis"
log_error "❌ Consensus configuration not found in genesis"
((ERRORS++))
fi
@@ -363,4 +363,3 @@ else
log_error " Please fix ${ERRORS} error(s) before deployment"
exit 1
fi