Skip to content

Commit

Permalink
fixup! fix(f3): test API during inactive-F3 modes and make consistent…
Browse files Browse the repository at this point in the history
… and safe
  • Loading branch information
rvagg committed Dec 13, 2024
1 parent b639a2b commit c2202f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/lf3/f3.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func (fff *F3) GetLatestCert(ctx context.Context) (*certs.FinalityCertificate, e
func (fff *F3) GetManifest(ctx context.Context) (*manifest.Manifest, error) {
m := fff.inner.Manifest()
if m == nil {
return nil, xerrors.Errorf("no known network manifest")
return nil, xerrors.New("no known network manifest")
}
if m.InitialPowerTable.Defined() {
return m, nil
Expand Down

0 comments on commit c2202f2

Please sign in to comment.