aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_escrow_lib.h
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-09-04 21:08:25 +0200
committerjospaeth <spaethj@in.tum.de>2020-09-04 21:08:25 +0200
commita889768a2ffaa033ae36e6fc26d78203cfd84569 (patch)
tree38da3a3c53296da2b1455dd2ed42523f1945ac5f /src/include/gnunet_escrow_lib.h
parent4456a5db60bea8a878f3fe822aa388c0d20c755a (diff)
downloadgnunet-a889768a2ffaa033ae36e6fc26d78203cfd84569.tar.gz
gnunet-a889768a2ffaa033ae36e6fc26d78203cfd84569.zip
fix implementation of escrow STATUS
Diffstat (limited to 'src/include/gnunet_escrow_lib.h')
-rw-r--r--src/include/gnunet_escrow_lib.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/include/gnunet_escrow_lib.h b/src/include/gnunet_escrow_lib.h
index 1ede355d0..864d6356d 100644
--- a/src/include/gnunet_escrow_lib.h
+++ b/src/include/gnunet_escrow_lib.h
@@ -92,17 +92,18 @@ struct GNUNET_ESCROW_Anchor
92struct GNUNET_ESCROW_Status 92struct GNUNET_ESCROW_Status
93{ 93{
94 /** 94 /**
95 * The time of the last successful escrow. 95 * The time of the last successful verification.
96 */ 96 */
97 struct GNUNET_TIME_Absolute last_escrow_time; 97 struct GNUNET_TIME_Absolute last_successful_verification_time;
98 98
99 /** 99 /**
100 * The time of the next recommended escrow. 100 * The time of the next recommended verification.
101 */ 101 */
102 struct GNUNET_TIME_Absolute next_recommended_escrow_time; 102 struct GNUNET_TIME_Absolute next_recommended_verification_time;
103 103
104 /** 104 /**
105 * The used escrow method. 105 * The escrow method used for the last escrow of the identity,
106 * GNUNET_ESCROW_KEY_NONE if no escrow has been performed.
106 */ 107 */
107 enum GNUNET_ESCROW_Key_Escrow_Method last_method; 108 enum GNUNET_ESCROW_Key_Escrow_Method last_method;
108}; 109};