Skip to content

Commit

Permalink
fix: Add configuration for witness_generation
Browse files Browse the repository at this point in the history
  • Loading branch information
spartucus committed May 6, 2024
1 parent 11c15e0 commit a9d8aac
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@
"OLAOS_ETH_SENDER_OPERATOR_PRIVATE_KEY": "1bcb518fd7c0176670f800a107ea75bb6ff31e83edc29700cbfcff40b06a0292",
}
},
{
"name": "Debug olaos_witness_generator",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/olaos_witness_generator",
"args": ["--round=basic_circuits"],
"cwd": "${workspaceFolder}"
},
{
"name": "Debug olaos_prover_fri_gateway",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/olaos_prover_fri_gateway",
"args": [],
"cwd": "${workspaceFolder}"
},
{
"name": "Debug Olatte",
"type": "lldb",
Expand Down
2 changes: 1 addition & 1 deletion config/configuration/fri_prover_gateway/base.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
api_url: "http://private-dns-for-server"
api_url: "http://localhost:13320"
api_poll_duration_secs: 100
1 change: 1 addition & 0 deletions ola_core/src/bin/ola_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ async fn main() -> anyhow::Result<()> {
Component::PubsubApi,
Component::Sequencer,
Component::Tree,
Component::ProofDataHandler,
];
let (core_task_handles, stop_sender, health_check_handle) = initialize_components(components)
.await
Expand Down

0 comments on commit a9d8aac

Please sign in to comment.