diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-03-12 11:33:10 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-03-12 11:33:10 +0100 |
commit | a166ca7fece8bbe3c66dcf0217cc81d20d185ab0 (patch) | |
tree | b9cf10b1034e3f1d4d9c367ef2faa7e6bd206404 /src/auditor/taler-wire-auditor.c | |
parent | 1ae2ba3d0a035734e4a28432e3246e58338fe9e8 (diff) |
fix #5281 for exchange: do preflight check that an old transaction is no longer running by accident
Diffstat (limited to 'src/auditor/taler-wire-auditor.c')
-rw-r--r-- | src/auditor/taler-wire-auditor.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/auditor/taler-wire-auditor.c b/src/auditor/taler-wire-auditor.c index 8ba38d39c..55a2a05fb 100644 --- a/src/auditor/taler-wire-auditor.c +++ b/src/auditor/taler-wire-auditor.c @@ -1412,8 +1412,11 @@ run (void *cls, GNUNET_SCHEDULER_shutdown (); return; } + edb->preflight (edb->cls, + esession); ret = edb->start (edb->cls, - esession); + esession, + "wire auditor"); if (GNUNET_OK != ret) { GNUNET_break (0); |