add print of port

This commit is contained in:
Bryan Stitt 2022-03-04 21:01:45 -08:00
parent 50d082c944
commit 511d348f7f

View File

@ -42,6 +42,8 @@ async fn main() {
let routes = warp::any().and(hello.or(proxy_eth_filter));
println!("Listening on port {}", listen_port);
warp::serve(routes).run(([127, 0, 0, 1], listen_port)).await;
}