Skip to content

Commit

Permalink
katana: include starknet api as default (#2510)
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy authored Oct 9, 2024
1 parent 3776bd5 commit 5ab6cde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/katana/node/src/config/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ impl RpcConfig {
impl Default for RpcConfig {
fn default() -> Self {
Self {
allowed_origins: None,
addr: DEFAULT_RPC_ADDR,
port: DEFAULT_RPC_PORT,
max_connections: DEFAULT_RPC_MAX_CONNECTIONS,
allowed_origins: None,
apis: HashSet::new(),
apis: HashSet::from([ApiKind::Starknet]),
}
}
}

0 comments on commit 5ab6cde

Please sign in to comment.