summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plop.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plop.erl b/src/plop.erl
index 8377684..9100ce6 100644
--- a/src/plop.erl
+++ b/src/plop.erl
@@ -50,7 +50,7 @@
%% @doc The parts of an STH which is to be signed. Used as the
%% interface to plop:sth/1, for testing.
-record(sth_signed, {
- version = ?PLOPVERSION :: pos_integer(),
+ version = ?PLOPVERSION :: non_neg_integer(),
signature_type :: signature_type(),
timestamp = now :: 'now' | integer(),
tree_size :: integer(),
@@ -61,7 +61,7 @@
%% @doc What's signed in an SPT. Used for serialisation before hasning
%% and signing. FIXME: Overlapping #spt{} -- merge somehow?
-record(spt_signed, {
- version = ?PLOPVERSION :: pos_integer(),
+ version = ?PLOPVERSION :: non_neg_integer(),
signature_type :: signature_type(),
timestamp :: integer(),
entry_type :: entry_type(),