Merge pull request #1308 from ethDreamer/eth1_fix

Fixed 1 line bug
This commit is contained in:
Paul Hauner 2020-06-29 12:30:51 +10:00 committed by GitHub
commit 1e671a61d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -436,7 +436,7 @@ impl Service {
log_chunk
.into_iter()
.map(|raw_log| {
DepositLog::from_log(&raw_log, service.inner.spec()).map_err(|error| {
DepositLog::from_log(&raw_log, self.inner.spec()).map_err(|error| {
Error::FailedToParseDepositLog {
block_range: block_range.clone(),
error,