Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
1.5 KiB
1.5 KiB
Quick Start: Flush All Stuck Transactions
Date: $(date)
✅ Quick Solution
Step 1: Copy Scripts to Proxmox Host
From your local machine (WSL/development environment), run:
cd /home/intlc/projects/proxmox
./scripts/copy-flush-scripts-to-proxmox.sh
This copies the flush scripts to the Proxmox host.
Step 2: Run Flush Script on Proxmox Host
SSH to the Proxmox host and run:
ssh root@192.168.11.10 # or your Proxmox host IP
cd /home/intlc/projects/proxmox
./scripts/flush-all-mempools-proxmox.sh
Or run it directly via SSH:
ssh root@192.168.11.10 "cd /home/intlc/projects/proxmox && ./scripts/flush-all-mempools-proxmox.sh"
This will restart all Besu services (validators, sentries, RPC nodes) which clears all in-memory transaction pools.
📋 What Gets Restarted
- ✅ 5 Validators (VMID 1000-1004)
- ✅ 4 Sentries (VMID 1500-1503)
- ✅ 3 RPC Nodes (VMID 2500-2502)
Total: 12 nodes
⏱️ Duration
- Restart time: ~30 seconds
- Service stabilization: ~15 seconds
- Total: ~45 seconds
🔍 After Flushing
- Wait for all nodes to sync (~1-2 minutes)
- Verify transactions are cleared
- Retry any blocked operations
📚 More Options
For comprehensive flushing with multiple methods, see:
Last Updated: $(date)