diff --git a/cmd/init.go b/cmd/init.go index 2bf40106..cc1e6e0b 100644 --- a/cmd/init.go +++ b/cmd/init.go @@ -381,7 +381,7 @@ func (p *InitCmdParams) setOperatorDefaults(ctx ActionCtx) error { return nil } -func (p *InitCmdParams) createAccount(ctx ActionCtx) (store.Status, error) { +func (p *InitCmdParams) createAccount(ctx ActionCtx) (*store.Report, error) { var err error p.Account.KP, err = nkeys.CreateAccount() if err != nil { diff --git a/cmd/store/store.go b/cmd/store/store.go index 3e053f3e..98115065 100644 --- a/cmd/store/store.go +++ b/cmd/store/store.go @@ -401,7 +401,7 @@ func (s *Store) handleManagedAccount(data []byte) (*Report, error) { return r, nil } -func (s *Store) StoreClaim(data []byte) (Status, error) { +func (s *Store) StoreClaim(data []byte) (*Report, error) { ct, err := s.ClaimType(data) if err != nil { return nil, err