diff options
| author | Your Name <you@example.com> | 2026-05-19 12:55:28 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-19 12:55:28 +0530 |
| commit | 473b4d1108d8dc9264c44de587121e6886b08a5d (patch) | |
| tree | 2812e2550c4520137127baca2ed7da2a90b47165 /main/tollgate_main.c | |
| parent | beb73a2eeacf7dbe5e292ce6e26a95a933808267 (diff) | |
fix: build errors in cvm_server, stratum_proxy, sw_miner + nucula visibility
- cvm_server: replace esp_timer_get_time() with xTaskGetTickCount(), fix
process_relay_message() call signature (3 args -> 2)
- stratum_proxy: widen task_name buffer from 16 to 20 chars
- sw_miner: add missing #include esp_random.h
- nucula_src: save_proofs() moved to public in wallet.hpp
- CMakeLists: ensure tcp_transport in REQUIRES
- tollgate_main: add display.h, local_relay.h, relay_selector.h, sync_manager.h includes
- Build now succeeds: 1.2MB binary, 70% partition free
Diffstat (limited to 'main/tollgate_main.c')
| -rw-r--r-- | main/tollgate_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/tollgate_main.c b/main/tollgate_main.c index 30a63db..e4cea42 100644 --- a/main/tollgate_main.c +++ b/main/tollgate_main.c | |||
| @@ -23,6 +23,10 @@ | |||
| 23 | #include "tollgate_client.h" | 23 | #include "tollgate_client.h" |
| 24 | #include "lightning_payout.h" | 24 | #include "lightning_payout.h" |
| 25 | #include "cvm_server.h" | 25 | #include "cvm_server.h" |
| 26 | #include "display.h" | ||
| 27 | #include "local_relay.h" | ||
| 28 | #include "relay_selector.h" | ||
| 29 | #include "sync_manager.h" | ||
| 26 | #include "stratum_client.h" | 30 | #include "stratum_client.h" |
| 27 | #include "stratum_proxy.h" | 31 | #include "stratum_proxy.h" |
| 28 | #include "sw_miner.h" | 32 | #include "sw_miner.h" |