@hashgraphonline/standards-sdk 0.0.46 → 0.0.47

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.
@@ -15714,7 +15714,11 @@ class HederaMirrorNode {
15714
15714
  return;
15715
15715
  }
15716
15716
  messageJson.sequence_number = message.sequence_number;
15717
- messages.push(messageJson);
15717
+ messages.push({
15718
+ ...messageJson,
15719
+ consensus_timestamp: message.consensus_timestamp,
15720
+ sequence_number: message.sequence_number
15721
+ });
15718
15722
  } catch (error) {
15719
15723
  this.logger.error(`Error processing message: ${error.message}`);
15720
15724
  }