debug: add logging for 'to' field in submit_transaction
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 7s
Integration Tests / test-service-integration (push) Has been cancelled
Multi-Node Blockchain Health Monitoring / health-check (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
P2P Network Verification / p2p-verification (push) Successful in 9s
Security Scanning / security-scan (push) Has been cancelled

This commit is contained in:
aitbc
2026-04-28 13:48:08 +02:00
parent 0359a7c83f
commit 82f271cba3

View File

@@ -312,7 +312,7 @@ async def submit_transaction(tx_data: TransactionRequest) -> Dict[str, Any]:
from ..mempool import get_mempool
try:
_logger.info(f"Received transaction request: sender={tx_data.sender}, value={tx_data.value}, payload={tx_data.payload}")
_logger.info(f"Received transaction request: sender={tx_data.sender}, to={tx_data.to}, value={tx_data.value}, payload={tx_data.payload}")
mempool = get_mempool()
chain_id = get_chain_id(None)