reset lib.rs back to 127 and server to [::]
This commit is contained in:
parent
23681045cd
commit
340f1701df
|
@ -10,11 +10,11 @@ pub mod rpc;
|
|||
pub mod workers;
|
||||
|
||||
#[from_env]
|
||||
pub const DEFAULT_RPC_ADDR: &str = "http://[::]:8899";
|
||||
pub const DEFAULT_RPC_ADDR: &str = "http://0.0.0.0:8899";
|
||||
#[from_env]
|
||||
pub const DEFAULT_LITE_RPC_ADDR: &str = "http://[::]:8890";
|
||||
pub const DEFAULT_LITE_RPC_ADDR: &str = "http://0.0.0.0:8890";
|
||||
#[from_env]
|
||||
pub const DEFAULT_WS_ADDR: &str = "ws://[::]:8900";
|
||||
pub const DEFAULT_WS_ADDR: &str = "ws://0.0.0.0:8900";
|
||||
#[from_env]
|
||||
pub const DEFAULT_TX_MAX_RETRIES: u16 = 1;
|
||||
#[from_env]
|
||||
|
|
Loading…
Reference in New Issue