Fix typo in eth1 service (#782)

This commit is contained in:
Paul Hauner
2020-01-09 10:53:25 +11:00
committed by GitHub
parent 30f51df4cf
commit da95a73605

View File

@@ -316,13 +316,13 @@ impl Service {
match update_result { match update_result {
Err(e) => error!( Err(e) => error!(
log_a, log_a,
"Failed to update eth1 genesis cache"; "Failed to update eth1 cache";
"retry_millis" => update_interval.as_millis(), "retry_millis" => update_interval.as_millis(),
"error" => e, "error" => e,
), ),
Ok((deposit, block)) => debug!( Ok((deposit, block)) => debug!(
log_a, log_a,
"Updated eth1 genesis cache"; "Updated eth1 cache";
"retry_millis" => update_interval.as_millis(), "retry_millis" => update_interval.as_millis(),
"blocks" => format!("{:?}", block), "blocks" => format!("{:?}", block),
"deposits" => format!("{:?}", deposit), "deposits" => format!("{:?}", deposit),