typo -replace ethereum with bitcoin

This commit is contained in:
Nicolas Ochem 2017-07-01 19:14:36 -07:00
parent eaee51a7a3
commit e231825224
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ pub fn setup_http_rpc_server(
let start_result = start_http(url, cors_domains, allowed_hosts, server);
match start_result {
Err(Error::Io(ref err)) if err.kind() == io::ErrorKind::AddrInUse => {
Err(format!("RPC address {} is already in use, make sure that another instance of an Ethereum client 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 Bitcoin 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),