remove outdated TODOs

This commit is contained in:
dr-frmr 2024-07-04 13:02:07 +02:00
parent 442b563d1a
commit 9c0f1af7e5
No known key found for this signature in database
2 changed files with 1 additions and 4 deletions

View File

@ -193,7 +193,7 @@ pub async fn http_server(
let rpc_bound_path = BoundPath { let rpc_bound_path = BoundPath {
app: Some(ProcessId::new(Some("rpc"), "distro", "sys")), app: Some(ProcessId::new(Some("rpc"), "distro", "sys")),
path: path.clone(), path: path.clone(),
secure_subdomain: None, // TODO maybe RPC *should* have subdomain? secure_subdomain: None,
authenticated: false, authenticated: false,
local_only: true, local_only: true,
static_content: None, static_content: None,

View File

@ -84,9 +84,6 @@ pub enum EthError {
/// The action type used for configuring eth:distro:sys. Only processes which have the "root" /// The action type used for configuring eth:distro:sys. Only processes which have the "root"
/// capability from eth:distro:sys can successfully send this action. /// capability from eth:distro:sys can successfully send this action.
///
/// NOTE: changes to config will not be persisted between boots, they must be saved in .env
/// to be reflected between boots. TODO: can change this
#[derive(Debug, Serialize, Deserialize)] #[derive(Debug, Serialize, Deserialize)]
pub enum EthConfigAction { pub enum EthConfigAction {
/// Add a new provider to the list of providers. /// Add a new provider to the list of providers.