Fix UTC usage in cross-chain sync helpers
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 4s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Successful in 2s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Successful in 1s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m12s
Integration Tests / test-service-integration (push) Successful in 1m7s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Failing after 3s
P2P Network Verification / p2p-verification (push) Successful in 4s
Python Tests / test-python (push) Failing after 9s
Security Scanning / security-scan (push) Successful in 38s
Deploy to Testnet / notify-deployment (push) Successful in 1s

This commit is contained in:
aitbc
2026-05-02 12:29:15 +02:00
parent f023562d25
commit a2e2aedeee

View File

@@ -18,7 +18,7 @@ class CrossChainSync:
self.sync_status[chain] = {
"synced": True,
"height": 0,
"last_sync": datetime.now(datetime.UTC).isoformat(),
"last_sync": datetime.now(UTC).isoformat(),
}
@@ -36,5 +36,5 @@ class MultiChainConsensus:
"consensus_reached": True,
"height": 0,
"validators": 1,
"last_consensus": datetime.now(datetime.UTC).isoformat(),
"last_consensus": datetime.now(UTC).isoformat(),
}