Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion relayer/chainreader/indexer/transactions_indexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,8 @@ func (tIndexer *TransactionsIndexer) syncTransmitterTransactions(ctx context.Con
TxDigest: txDigestHex,
BlockHeight: checkpointResponse.SequenceNumber,
BlockHash: blockHashBytes,
BlockTimestamp: blockTimestamp,
// Convert to seconds for consistency with events indexer.
BlockTimestamp: blockTimestamp / 1000,
Data: executionStateChanged,
IsSynthetic: true,
}
Expand Down
Loading