Files
proxmox/docs/archive/configuration/FLUSH_TRANSACTIONS_QUICK_START.md
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- 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>
2026-02-12 15:46:57 -08:00

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

  1. Wait for all nodes to sync (~1-2 minutes)
  2. Verify transactions are cleared
  3. Retry any blocked operations

📚 More Options

For comprehensive flushing with multiple methods, see:


Last Updated: $(date)