Some checks failed
Documentation Validation / validate-docs (push) Has been cancelled
API Endpoint Tests / test-api-endpoints (push) Successful in 40s
CLI Tests / test-cli (push) Successful in 1m3s
Integration Tests / test-service-integration (push) Successful in 1m19s
Package Tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk]) (push) Successful in 1m1s
Package Tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core]) (push) Successful in 24s
Package Tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto]) (push) Successful in 26s
Package Tests / test-javascript-packages (map[name:aitbc-sdk-js path:packages/js/aitbc-sdk]) (push) Successful in 15s
Package Tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk]) (push) Successful in 27s
Package Tests / test-javascript-packages (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 1m1s
Python Tests / test-python (push) Successful in 1m28s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 47s
Security Scanning / security-scan (push) Successful in 1m23s
Smart Contract Tests / test-solidity (map[name:zk-circuits path:apps/zk-circuits]) (push) Successful in 51s
Systemd Sync / sync-systemd (push) Successful in 6s
Smart Contract Tests / lint-solidity (push) Successful in 1m4s
🔧 Workflow Enhancements: • Update CLI tests to use dedicated test runner with virtual environment • Add locust dependency to integration and python test workflows • Install Python packages in development mode for proper import testing • Add package import verification in python-tests workflow 🛠️ Package Testing Improvements: • Add Hardhat dependency installation for aitbc-token package • Add
62 lines
2.0 KiB
Markdown
62 lines
2.0 KiB
Markdown
# Legacy Path Cleanup Summary
|
|
|
|
## ✅ Legacy Path Issues Fixed
|
|
|
|
### 1. Genesis File Path Resolution
|
|
**Before (Legacy):**
|
|
```python
|
|
genesis_paths = [
|
|
Path(f"/opt/aitbc/apps/blockchain-node/data/{self._config.chain_id}/genesis.json"), # Hardcoded
|
|
Path(f"./data/{self._config.chain_id}/genesis.json"), # Relative path
|
|
Path(f"/var/lib/aitbc/data/{self._config.chain_id}/genesis.json"), # Mixed
|
|
]
|
|
```
|
|
|
|
**After (Clean):**
|
|
```python
|
|
genesis_paths = [
|
|
Path(f"/var/lib/aitbc/data/{self._config.chain_id}/genesis.json"), # Standard location only
|
|
]
|
|
```
|
|
|
|
### 2. File System Cleanup
|
|
- ✅ Removed duplicate genesis file: `/opt/aitbc/apps/blockchain-node/data/ait-mainnet/genesis.json`
|
|
- ✅ Single source of truth: `/var/lib/aitbc/data/ait-mainnet/genesis.json`
|
|
- ✅ Uses standardized directory structure from configuration
|
|
|
|
### 3. Debug Logging Cleanup
|
|
- ✅ Removed temporary debug logging added during troubleshooting
|
|
- ✅ Clean, production-ready logging restored
|
|
|
|
## 🎯 Benefits Achieved
|
|
|
|
- **🗂️ Consistent Paths**: Uses standardized `/var/lib/aitbc/data/` structure
|
|
- **🔧 Maintainable**: Single location for genesis file
|
|
- **📱 Configuration-Driven**: Follows established directory standards
|
|
- **🚀 Production Ready**: Clean code without legacy workarounds
|
|
- **🛡️ Reliable**: No more path resolution ambiguity
|
|
|
|
## 📁 Current Directory Structure
|
|
|
|
```
|
|
/var/lib/aitbc/
|
|
├── data/
|
|
│ └── ait-mainnet/
|
|
│ ├── chain.db # Blockchain database
|
|
│ └── genesis.json # ✅ Single genesis file
|
|
├── keystore/
|
|
│ ├── aitbc1genesis.json # Genesis wallet
|
|
│ └── .password # Wallet passwords
|
|
└── logs/ # Service logs
|
|
```
|
|
|
|
## 🔍 Verification
|
|
|
|
- ✅ Genesis account initialization working
|
|
- ✅ Transaction processing functional
|
|
- ✅ No hardcoded paths remaining
|
|
- ✅ Uses configuration-driven paths
|
|
- ✅ Clean, maintainable codebase
|
|
|
|
The PoA proposer now uses clean, standardized paths without any legacy workarounds!
|