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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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