Skip to content

Commit

Permalink
fix: workflowKey is optional
Browse files Browse the repository at this point in the history
  • Loading branch information
agparadiso committed Nov 27, 2024
1 parent 32e1b15 commit b1a6f27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/services/feeds/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,11 @@ func (s *service) SyncNodeInfo(ctx context.Context, id int64) error {
cfgMsgs = append(cfgMsgs, cfgMsg)
}

workflowKey := s.getWorkflowPublicKey()
if _, err = fmsClient.UpdateNode(ctx, &pb.UpdateNodeRequest{
Version: s.version,
ChainConfigs: cfgMsgs,
WorkflowKey: s.getWorkflowPublicKey(),
WorkflowKey: &workflowKey,
}); err != nil {
return err
}
Expand Down

0 comments on commit b1a6f27

Please sign in to comment.