Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change cli serve defaults and path to match quickstart docker #211

Merged
merged 1 commit into from
Oct 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use crate::{jsonrpc, HEADING_SANDBOX};
#[derive(Parser, Debug)]
pub struct Cmd {
/// Port to listen for requests on.
#[clap(long, default_value("8080"))]
#[clap(long, default_value("8000"))]
port: u16,

/// File to persist ledger state
Expand Down Expand Up @@ -85,7 +85,7 @@ impl Cmd {
let with_transaction_status_map = warp::any().map(move || transaction_status_map.clone());

let jsonrpc_route = warp::post()
.and(warp::path!("api" / "v1" / "jsonrpc"))
.and(warp::path!("soroban" / "rpc"))
.and(warp::body::json())
.and(with_ledger_file)
.and(with_transaction_status_map)
Expand Down