@hashgraphonline/standards-sdk 0.0.47 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15717,7 +15717,10 @@ class HederaMirrorNode {
|
|
|
15717
15717
|
messages.push({
|
|
15718
15718
|
...messageJson,
|
|
15719
15719
|
consensus_timestamp: message.consensus_timestamp,
|
|
15720
|
-
sequence_number: message.sequence_number
|
|
15720
|
+
sequence_number: message.sequence_number,
|
|
15721
|
+
date: new Date(
|
|
15722
|
+
Number(message.consensus_timestamp) * 1e3
|
|
15723
|
+
)
|
|
15721
15724
|
});
|
|
15722
15725
|
} catch (error) {
|
|
15723
15726
|
this.logger.error(`Error processing message: ${error.message}`);
|