aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus.dahlberg@kau.se>2020-10-23 18:37:37 +0200
committerRasmus Dahlberg <rasmus.dahlberg@kau.se>2020-10-23 18:37:37 +0200
commit134f7e1cb59b7c1bd4f2eadfebe7f65da1264988 (patch)
tree0d216c95de64c3f46412a9f87e5dcfe8ad067ea3 /server
parent9b38f5a034486c27eaf81062ecdd86a72667e2b0 (diff)
added start on get-anchors code path
Diffstat (limited to 'server')
-rw-r--r--server/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main.go b/server/main.go
index f52433b..53df7ee 100644
--- a/server/main.go
+++ b/server/main.go
@@ -48,7 +48,7 @@ func main() {
glog.Infof("%v", cert_pool.Subjects())
glog.Info("Creating STFE server instance")
- stfe_server := stfe.NewInstance(*prefix, *trillianID, trillian.NewTrillianLogClient(conn), *rpcDeadline, new(ctutil.SystemTimeSource), anchors)
+ stfe_server := stfe.NewInstance(*prefix, *trillianID, trillian.NewTrillianLogClient(conn), *rpcDeadline, new(ctutil.SystemTimeSource), anchors, *cert_pool)
stfe_server.AddEndpoints(mux)
glog.Infof("Serving on %v%v", *httpEndpoint, *prefix)