Skip to content

Commit

Permalink
Backwards
Browse files Browse the repository at this point in the history
  • Loading branch information
Vagabond committed Jan 10, 2019
1 parent 8db79bd commit d3a9890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hbbft.erl
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ serialize(#hbbft_data{secret_key=SK}=Data, true) ->
-spec deserialize(hbbft_serialized_data(), tpke_privkey:privkey()) -> hbbft_data().
deserialize(R, SK) when is_record(R, hbbft_serialized_data, 19) ->
%% old record without filterfun field
deserialize(tuple_to_list(list_to_tuple(R) ++ [undefined]), SK);
deserialize(list_to_tuple(tuple_to_list(R) ++ [undefined]), SK);
deserialize(#hbbft_serialized_data{batch_size=BatchSize,
n=N,
f=F,
Expand Down

0 comments on commit d3a9890

Please sign in to comment.