aboutsummaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus.dahlberg@kau.se>2020-10-22 20:10:03 +0200
committerRasmus Dahlberg <rasmus.dahlberg@kau.se>2020-10-22 20:10:03 +0200
commite049d303d911b02d7505214e56744f21437f3916 (patch)
tree260bea3c65ab96209dcd7eb68f133dd8199ccc29 /handler.go
parent44e4fb0f4e9e9ff9bf6e31c68b626fea2eb7403a (diff)
indented using go fmt
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/handler.go b/handler.go
index 57adaf1..10defba 100644
--- a/handler.go
+++ b/handler.go
@@ -175,9 +175,9 @@ func getProofByHash(ctx context.Context, i *instance, w http.ResponseWriter, r *
}
trillianRequest := trillian.GetInclusionProofByHashRequest{
- LogId: i.logID,
- LeafHash: request.Hash,
- TreeSize: request.TreeSize,
+ LogId: i.logID,
+ LeafHash: request.Hash,
+ TreeSize: request.TreeSize,
OrderBySequence: true,
}
trillianResponse, err := i.client.GetInclusionProofByHash(ctx, &trillianRequest)