From 3312461c5c31cf84473887bb7dfde0d63baa3000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20S=C3=A1rai?= Date: Fri, 26 Jul 2024 15:11:35 +0200 Subject: [PATCH] feat(act): log out grantees addresses --- pkg/check/act/act.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/check/act/act.go b/pkg/check/act/act.go index 8fb094e43..f55992a34 100644 --- a/pkg/check/act/act.go +++ b/pkg/check/act/act.go @@ -148,6 +148,8 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int return fmt.Errorf("node %s: GetActGrantees: addresses length is not 3", upNodeName) } + c.logger.Infof("ACT grantees listed: %+v", addresses) + c.logger.Info("ACT grantees listed") // download act file with added grantees @@ -163,7 +165,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int } for _, str := range grantees { gPublisher, _ := swarm.ParseHexAddress(str) - history := gFile.HistroryAddress() + history := file2.HistroryAddress() c.logger.Infof("Downloading file with address %s", file2.Address().String()) c.logger.Infof("Downloading file with grantee %s", str) c.logger.Infof("Downloading file with history address %s", history.String())