diff options
| author | soryu <soryu@soryu.co> | 2026-01-27 03:06:53 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-27 03:06:53 +0000 |
| commit | b1ecdf1f68fc6f5820696252e2a6032848285d4c (patch) | |
| tree | 251a12f9fc1754b7f37fdaf4b0802e3aedd73b70 | |
| parent | 2e0045290758ed486dcea73cd588274c8911c013 (diff) | |
| download | soryu-b1ecdf1f68fc6f5820696252e2a6032848285d4c.tar.gz soryu-b1ecdf1f68fc6f5820696252e2a6032848285d4c.zip | |
Fix missing local_only field in TUI CreateContractRequest
Add the missing local_only field to the CreateContractRequest struct
initialization in the TUI contract creation handler.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
| -rw-r--r-- | makima/src/bin/makima.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/makima/src/bin/makima.rs b/makima/src/bin/makima.rs index 4d88fc5..44fa590 100644 --- a/makima/src/bin/makima.rs +++ b/makima/src/bin/makima.rs @@ -1108,6 +1108,7 @@ async fn run_tui_loop( initial_phase: None, autonomous_loop: None, phase_guard: None, + local_only: None, red_team_enabled: None, red_team_prompt: None, }; |
