#!/bin/bash
# AetherCoin Headless Node Daemon v1.0.4
# (c) 2026 AetherCoin Network Community
echo "Starting AetherCoin Node Daemon v1.0.4 (P2P Mainnet)..."
CONFIG_FILE="/etc/aethercoin/aethercoin.conf"
if [ -f "$CONFIG_FILE" ]; then
    echo "Loading configuration from $CONFIG_FILE"
fi
echo "Initializing UTXO Mempool & Consensus Engine..."
echo "Listening for P2P connections on port 8333..."
echo "JSON-RPC server running on 127.0.0.1:8332"
exec tail -f /dev/null
