Bitcoin -> Zcash (#177)

This commit is contained in:
Dimitris Apostolou 2019-09-23 22:13:08 +03:00 committed by Henry de Valence
parent dceefc164b
commit ce3c1b9933
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ pub fn setup_http_rpc_server(
let start_result = start_http(url, cors_domains, allowed_hosts, server);
match start_result {
Err(ref err) if err.kind() == io::ErrorKind::AddrInUse => {
Err(format!("RPC address {} is already in use, make sure that another instance of a Bitcoin node is not running or change the address using the --jsonrpc-port and --jsonrpc-interface options.", url))
Err(format!("RPC address {} is already in use, make sure that another instance of a Zcash node is not running or change the address using the --jsonrpc-port and --jsonrpc-interface options.", url))
},
Err(e) => Err(format!("RPC error: {:?}", e)),
Ok(server) => Ok(server),