Skip to content

Commit 4ef2d0f

Browse files
committed
typos
1 parent 0dfeca7 commit 4ef2d0f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We recommend using the latest released version.
44

55
## Audit reports
66

7-
Audit reports are published on Flare's [Developer Hub](https://dev.flare.network/support/audits/)
7+
Audit reports are published on Flare's [Developer Hub](https://dev.flare.network/support/audits/).
88

99
## Reporting Vulnerabilities
1010

client/attestation/attestation.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,17 +152,17 @@ func (a *Attestation) Discard(ctx context.Context) bool {
152152
defer a.RoundStatus.RUnlock()
153153

154154
if a.Status == Success {
155-
logger.Debugf("discarding already confirmed request in round %d", a.RoundID)
155+
logger.Debugf("discarding already confirmed request from round %d", a.RoundID)
156156
return true
157157
}
158158

159159
if a.RoundStatus.Value == Done {
160-
logger.Debugf("discarding request in finished round %d", a.RoundID)
160+
logger.Debugf("discarding request from finished round %d", a.RoundID)
161161
return true
162162
}
163163

164164
if a.RoundStatus.Value == Consensus && !a.Consensus {
165-
logger.Debugf("discarding unselected request in round %d", a.RoundID)
165+
logger.Debugf("discarding unselected request from round %d", a.RoundID)
166166
return true
167167
}
168168

0 commit comments

Comments
 (0)