diff options
| author | Christian Grothoff <christian@grothoff.org> | 2021-10-20 16:01:11 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2021-10-20 16:01:11 +0200 | 
| commit | c13810ba2c43a63504269c646b438c2fd157d4ff (patch) | |
| tree | 4433bcb4792e0310be7f3a8d3c80a33c777ae555 /src/include | |
| parent | c75a3a1921b84e000d73f7715e31049717dc6232 (diff) | |
fix #7049: immediate restart of MHD when already running
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/taler_fakebank_lib.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/include/taler_fakebank_lib.h b/src/include/taler_fakebank_lib.h index dc6ba1da..16135a4d 100644 --- a/src/include/taler_fakebank_lib.h +++ b/src/include/taler_fakebank_lib.h @@ -87,7 +87,7 @@ TALER_FAKEBANK_start2 (uint16_t port,   * @param h bank instance   * @return #GNUNET_OK on success   */ -int +enum GNUNET_GenericReturnValue  TALER_FAKEBANK_check_empty (struct TALER_FAKEBANK_Handle *h); @@ -109,7 +109,7 @@ TALER_FAKEBANK_check_empty (struct TALER_FAKEBANK_Handle *h);   * @param[out] wtid set to the wire transfer identifier   * @return #GNUNET_OK on success   */ -int +enum GNUNET_GenericReturnValue  TALER_FAKEBANK_check_debit (struct TALER_FAKEBANK_Handle *h,                              const struct TALER_Amount *want_amount,                              const char *want_debit, @@ -133,7 +133,7 @@ TALER_FAKEBANK_check_debit (struct TALER_FAKEBANK_Handle *h,   * @param reserve_pub reserve public key expected in wire subject   * @return #GNUNET_OK on success   */ -int +enum GNUNET_GenericReturnValue  TALER_FAKEBANK_check_credit (struct TALER_FAKEBANK_Handle *h,                               const struct TALER_Amount *want_amount,                               const char *want_debit, | 
