fix: update output() signature with format and title parameters, fix Config import in dual_mode_wallet_adapter
Some checks failed
CLI Tests / test-cli (push) Failing after 3s
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m20s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Security Scanning / security-scan (push) Successful in 35s

- Added format and title parameters to output() function in utils/__init__.py
- Handle format='json'/'yaml' for structured data output
- Display optional title with underline separator when provided
- Fixed import in dual_mode_wallet_adapter.py from config.Config to aitbc_cli.config.CLIConfig
This commit is contained in:
aitbc
2026-05-19 20:20:40 +02:00
parent 26f7d72b8e
commit 83a03be376
2 changed files with 10 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ from datetime import datetime
sys.path.insert(0, "/opt/aitbc/cli")
from utils.wallet_daemon_client import WalletDaemonClient, WalletInfo, WalletBalance, ChainInfo, WalletMigrationResult
from config import Config
from aitbc_cli.config import CLIConfig as Config
from utils import error, success, output