We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e58711 commit d08e4adCopy full SHA for d08e4ad
relayer/chainreader/indexer/transactions_indexer.go
@@ -526,7 +526,8 @@ func (tIndexer *TransactionsIndexer) syncTransmitterTransactions(ctx context.Con
526
TxDigest: txDigestHex,
527
BlockHeight: checkpointResponse.SequenceNumber,
528
BlockHash: blockHashBytes,
529
- BlockTimestamp: blockTimestamp,
+ // Convert to seconds for consistency with events indexer.
530
+ BlockTimestamp: blockTimestamp / 1000,
531
Data: executionStateChanged,
532
IsSynthetic: true,
533
}
0 commit comments