1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-09 00:00:01 +01:00

remove node id from websocket payload

This commit is contained in:
Steffen Vogel 2018-05-24 08:43:07 +02:00
parent aee2c7d569
commit 67c4bbc791
2 changed files with 0 additions and 2 deletions

View file

@ -156,7 +156,6 @@ class SimulatorDataDataManager {
const nsec = (message.timestamp - sec * 1e3) * 1e6;
view.setUint8(0x00, bits, true);
view.setUint8(0x01, message.id, true);
view.setUint16(0x02, message.length, true);
view.setUint32(0x04, message.sequence, true);
view.setUint32(0x08, sec, true);

View file

@ -54,7 +54,6 @@ class SimulationDataStore extends ReduceStore {
length: action.inputLength,
version: 2,
type: 0,
id: 0,
timestamp: Date.now(),
values: new Array(action.inputLength).fill(0)
}