aboutsummaryrefslogtreecommitdiff
path: root/sth.go
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus.dahlberg@kau.se>2021-02-18 19:30:17 +0100
committerRasmus Dahlberg <rasmus.dahlberg@kau.se>2021-02-18 19:30:17 +0100
commitf93ca569f1c892217786302e6a46682f015fda57 (patch)
treed0bc7ca392d29f0eed7c516c4b04443c9401532a /sth.go
parent55a0a1c9c2a6df4f05d539f0fc67a8c7052a338f (diff)
added TestNewActiveSthSource
Diffstat (limited to 'sth.go')
-rw-r--r--sth.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/sth.go b/sth.go
index 5cf3413..810bd58 100644
--- a/sth.go
+++ b/sth.go
@@ -51,7 +51,7 @@ func NewActiveSthSource(cli trillian.TrillianLogClient, lp *LogParameters) (*Act
if err != nil {
return nil, fmt.Errorf("Latest: %v", err)
}
- // TODO: load peristed cosigned STH?
+ // TODO: load persisted cosigned STH?
s.currSth = NewCosignedTreeHeadV1(sth.SignedTreeHeadV1, nil)
s.nextSth = NewCosignedTreeHeadV1(sth.SignedTreeHeadV1, nil)
s.cosignatureFrom = make(map[string]bool)
@@ -93,7 +93,7 @@ func (s *ActiveSthSource) Cosigned(_ context.Context) (*StItem, error) {
func (s *ActiveSthSource) AddCosignature(_ context.Context, costh *StItem) error {
s.mutex.Lock()
defer s.mutex.Unlock()
- if !reflect.DeepEqual(s.nextSth.CosignedTreeHeadV1.SignedTreeHeadV1, costh.CosignedTreeHeadV1.SignedTreeHeadV1) {
+ if !reflect.DeepEqual(s.nextSth.CosignedTreeHeadV1.SignedTreeHeadV1, costh.CosignedTreeHeadV1.SignedTreeHeadV1) {
return fmt.Errorf("cosignature covers a different tree head")
}
witness := costh.CosignedTreeHeadV1.SignatureV1[0].Namespace.String()