Skip to content

Commit

Permalink
feat(act): use patched ref
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferenc Sárai committed Jul 29, 2024
1 parent 10d0f3d commit aae23e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/check/act/act.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
// download act file
c.logger.Infof("config: %+v", client1.Config())
his := pFile.HistroryAddress()
c.logger.Infof("ref: %v, act: %v, pubk: %v, history: %v", fileAddress, act, publisher, his)
size1, hash1, err1 := client1.DownloadActFile(ctx, fileAddress, &api.DownloadOptions{Act: &act, ActPublicKey: &publisher, ActHistoryAddress: &his})
c.logger.Infof("ref: %v, act: %v, pubk: %v, history: %v", pFile.Address(), act, publisher, his)
size1, hash1, err1 := client1.DownloadActFile(ctx, pFile.Address(), &api.DownloadOptions{Act: &act, ActPublicKey: &publisher, ActHistoryAddress: &his})
if err1 != nil {
return fmt.Errorf("node %s: %w", nodeName1, err1)
}
Expand Down

0 comments on commit aae23e4

Please sign in to comment.