From 7e4723ae5b9ab0c8293da0cae233d0b299ea041f Mon Sep 17 00:00:00 2001 From: siiky Date: Wed, 16 Apr 2025 17:40:52 +0100 Subject: [PATCH] chore: remove unused `txId` field --- lib/route-helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/route-helpers.js b/lib/route-helpers.js index 91cf5d5f..ae4c173f 100644 --- a/lib/route-helpers.js +++ b/lib/route-helpers.js @@ -20,7 +20,7 @@ function stateChange (deviceId, deviceTime, rec) { id: rec.uuid, deviceId: deviceId, eventType: 'stateChange', - note: JSON.stringify({ state: rec.state, isIdle: rec.isIdle, txId: rec.txId }), + note: JSON.stringify({ state: rec.state, isIdle: rec.isIdle }), deviceTime: deviceTime } return dbm.machineEvent(event)