Skip to content

Commit

Permalink
feat(f3): log a warning when we lose an F3 participation lease
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Oct 10, 2024
1 parent df66916 commit 8a25f6b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions chain/lf3/participation_lease.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ func (l *leaser) getParticipantsByInstance(instance uint64) []uint64 {
if instance > lease.ToInstance() {
// Lazily delete the expired leases.
delete(l.leases, id)
log.Warnf("lost F3 participation lease for miner f0%d", id)
} else {
participants = append(participants, id)
}
Expand Down

0 comments on commit 8a25f6b

Please sign in to comment.