gnunet-handbook

The GNUnet Handbook
Log | Files | Refs

commit 77e8b7fe6104058c4349a3f9af3f85eef19c65aa
parent d80d9516c185341e89edb76eebf31bd4e76c382a
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Tue, 25 Oct 2022 21:26:58 +0900

fix integer

Diffstat:
Mdevelopers/rest/namestore.rst | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/developers/rest/namestore.rst b/developers/rest/namestore.rst @@ -37,10 +37,10 @@ Responses are provided in the JSON format accordingly. record_type: string; // The relative expiration time, in microseconds. Set if is_relative_expiration: true - relative_expiration: string; + relative_expiration: integer; - // The absolute expiration time, in microseconds. Not set if is_relative_expiration: true - absolute_expiration: string; + // The absolute expiration time, in microseconds. Set if is_relative_expiration: false + absolute_expiration: integer; // Whether or not this is a private record is_private: boolean;