Remove debug logging from router
Some checks failed
Integration Tests / test-service-integration (push) Failing after 9s
Python Tests / test-python (push) Successful in 12s
Security Scanning / security-scan (push) Successful in 23s
P2P Network Verification / p2p-verification (push) Successful in 3s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 2s
Blockchain Synchronization Verification / sync-verification (push) Failing after 4s

This commit is contained in:
aitbc
2026-04-22 13:49:21 +02:00
parent b064f922bd
commit 670fff409f

View File

@@ -308,12 +308,7 @@ async def submit_transaction(tx_data: TransactionRequest) -> Dict[str, Any]:
"signature": tx_data.sig
}
_logger.info(f"[ROUTER] Submitting transaction: type={tx_data.type}, normalized_type={tx_data_dict.get('type')}")
tx_data_dict = _normalize_transaction_data(tx_data_dict, chain_id)
_logger.info(f"[ROUTER] After normalization: type={tx_data_dict.get('type')}, keys={list(tx_data_dict.keys())}")
_validate_transaction_admission(tx_data_dict, mempool)
tx_hash = mempool.add(tx_data_dict, chain_id=chain_id)