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
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:
@@ -308,12 +308,7 @@ async def submit_transaction(tx_data: TransactionRequest) -> Dict[str, Any]:
|
|||||||
"signature": tx_data.sig
|
"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)
|
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)
|
_validate_transaction_admission(tx_data_dict, mempool)
|
||||||
|
|
||||||
tx_hash = mempool.add(tx_data_dict, chain_id=chain_id)
|
tx_hash = mempool.add(tx_data_dict, chain_id=chain_id)
|
||||||
|
|||||||
Reference in New Issue
Block a user