summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Ahltorp <map@kth.se>2015-03-04 15:42:59 +0100
committerMagnus Ahltorp <map@kth.se>2015-03-04 15:42:59 +0100
commite0f11a58033d52c70bc76b4b5611cb88485d4653 (patch)
tree41907841f09f19d93adfab91eb314bb0789851f9 /src
parentff18e0fdd57a6b485f427173fe7febee03345037 (diff)
Save STH instead of calculating a new one each time.
Diffstat (limited to 'src')
-rw-r--r--src/v1.erl12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/v1.erl b/src/v1.erl
index d9796fa..006990d 100644
--- a/src/v1.erl
+++ b/src/v1.erl
@@ -39,16 +39,8 @@ request(post, "ct/v1/add-pre-chain", _Input) ->
niy();
request(get, "ct/v1/get-sth", _Query) ->
- { Treesize,
- Timestamp,
- Roothash,
- Signature} = plop:sth(),
- R = [{tree_size, Treesize},
- {timestamp, Timestamp},
- {sha256_root_hash, base64:encode(Roothash)},
- {tree_head_signature, base64:encode(
- plop:serialise(Signature))}],
- success({R});
+ R = plop:sth(),
+ success(R);
request(get, "ct/v1/get-sth-consistency", Query) ->
case lists:sort(Query) of