diff options
| author | Your Name <you@example.com> | 2026-05-17 04:21:39 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-17 04:21:39 +0530 |
| commit | 78dd599277b8e8b2ddc39a4ae710ec91d737272e (patch) | |
| tree | 9fbd89695cede00b8ff3b12ce428e96a2aa70e9b /main/CMakeLists.txt | |
| parent | b0d7394e089f00a9ffa67a2b33a502e47b778a93 (diff) | |
Phase 4: TollGate client detection + auto-payment
- New tollgate_client.c/h: detect upstream TollGate (kind=10021),
auto-pay via nucula wallet, session monitoring with 20% renewal
- State machine: IDLE→DETECTING→NEEDS_PAY→PAYING→PAID→RENEWING
- Blocking: upstream payment before local services start
- Synchronous wallet init (was async task)
- Client config: enabled, steps_to_buy, renewal_threshold_pct
- Updated PLAN.md with Phases 4-7 (client, payout, bytes, CVM)
- Updated CHECKLIST.md with all new phase items
- 30 new unit tests (all passing), 116 total
Diffstat (limited to 'main/CMakeLists.txt')
| -rw-r--r-- | main/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index df69283..be4d564 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt | |||
| @@ -10,6 +10,7 @@ idf_component_register(SRCS "tollgate_main.c" | |||
| 10 | "nostr_event.c" | 10 | "nostr_event.c" |
| 11 | "geohash.c" | 11 | "geohash.c" |
| 12 | "wifistr.c" | 12 | "wifistr.c" |
| 13 | "tollgate_client.c" | ||
| 13 | INCLUDE_DIRS "." | 14 | INCLUDE_DIRS "." |
| 14 | REQUIRES esp_wifi esp_event esp_netif nvs_flash esp_http_server | 15 | REQUIRES esp_wifi esp_event esp_netif nvs_flash esp_http_server |
| 15 | lwip json esp_http_client mbedtls esp-tls log spiffs | 16 | lwip json esp_http_client mbedtls esp-tls log spiffs |