Skip to content

Commit

Permalink
chore(faucet): print on claim genesis error
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin authored and joshuef committed Dec 4, 2023
1 parent d8f6f4b commit ffc62f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sn_faucet/src/faucet_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ pub async fn run_faucet_server(client: &Client) -> Result<()> {
let server =
Server::http("0.0.0.0:8000").map_err(|err| eyre!("Failed to start server: {err}"))?;
claim_genesis(client).await.map_err(|err| {
println!("Faucet Server couldn't start as we failed to claim Genesis");
eprintln!("Faucet Server couldn't start as we failed to claim Genesis");
error!("Faucet Server couldn't start as we failed to claim Genesis");
err
Expand Down

0 comments on commit ffc62f5

Please sign in to comment.