* Improve solana catchup * Overidable port, retry, args error clean up * print cleanup * Reduce diff * Tweak warns a bit
7 lines
220 B
Rust
7 lines
220 B
Rust
/// Default port number for JSON RPC API
|
|
pub const DEFAULT_RPC_PORT: u16 = 8899;
|
|
pub const DEFAULT_RPC_PORT_STR: &str = "8899";
|
|
|
|
/// Default port number for JSON RPC pubsub
|
|
pub const DEFAULT_RPC_PUBSUB_PORT: u16 = 8900;
|