Skip to content

Commit

Permalink
Merge pull request #21425 from holiman/leslock
Browse files Browse the repository at this point in the history
les: update checktime even if check fails
  • Loading branch information
karalabe committed Aug 7, 2020
2 parents 68754f3 + 983cb25 commit 3bb8a4e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions les/checkpointoracle/oracle.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,11 @@ func (oracle *CheckpointOracle) StableCheckpoint() (*params.TrustedCheckpoint, u
// Look it up properly
// Retrieve the latest checkpoint from the contract, abort if empty
latest, hash, height, err := oracle.contract.Contract().GetLatestCheckpoint(nil)
oracle.lastCheckTime = time.Now()
if err != nil || (latest == 0 && hash == [32]byte{}) {
return nil, 0
oracle.lastCheckPointHeight = 0
oracle.lastCheckPoint = nil
return oracle.lastCheckPoint, oracle.lastCheckPointHeight
}
local := oracle.getLocal(latest)

Expand All @@ -106,10 +109,9 @@ func (oracle *CheckpointOracle) StableCheckpoint() (*params.TrustedCheckpoint, u
//
// In both cases, no stable checkpoint will be returned.
if local.HashEqual(hash) {
oracle.lastCheckTime = time.Now()
oracle.lastCheckPointHeight = height.Uint64()
oracle.lastCheckPoint = &local
return &local, height.Uint64()
return oracle.lastCheckPoint, oracle.lastCheckPointHeight
}
return nil, 0
}
Expand Down

0 comments on commit 3bb8a4e

Please sign in to comment.