Skip to content

Commit

Permalink
slacken FTL loading requirements (#14208)
Browse files Browse the repository at this point in the history
- the way the auditor is written, we don't actually need intermediate subchains to start with unstubbed links
- we still need link #1 to be unstubbed
  • Loading branch information
maxtaco committed Oct 11, 2018
1 parent c323f1d commit 7768579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/teams/ftl.go
Original file line number Diff line number Diff line change
Expand Up @@ -765,8 +765,8 @@ func (f *FastTeamChainLoader) checkStubs(m libkb.MetaContext, shoppingList shopp
}
}

if newLinks[0].isStubbed() && canReadTeam {
return NewInvalidLink(newLinks[0], "expected first link to be unstubbed (if we can read the team)")
if newLinks[0].isStubbed() && newLinks[0].Seqno() == keybase1.Seqno(1) {
return NewInvalidLink(newLinks[0], "expected head link to be unstubbed")
}

return nil
Expand Down

0 comments on commit 7768579

Please sign in to comment.