From 74f52a9c7cc0a6a8b2d59326c2f5af1dbaa416f8 Mon Sep 17 00:00:00 2001 From: secret-mars Date: Wed, 15 Apr 2026 18:57:21 +0000 Subject: [PATCH] fix(setup): scaffold daemon/bridge-state.json with idle default (fixes #33) Phase 2d (Balance & Runway Check) reads bridge-state.json and expects the {in_flight,txid,amount_sats,started_at,last_status} shape. A fresh install with no bridge-state.json crashes on first cycle. Credit to PixelForge (cycle 9 scout) who reported this in #33. --- daemon/bridge-state.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 daemon/bridge-state.json diff --git a/daemon/bridge-state.json b/daemon/bridge-state.json new file mode 100644 index 0000000..27502aa --- /dev/null +++ b/daemon/bridge-state.json @@ -0,0 +1 @@ +{"in_flight":false,"txid":null,"amount_sats":0,"started_at":null,"last_status":"idle"}