Merge branch '1110-signature-labels' into 'master'

Don't use ClientId.toString() for signature labels

Closes #1110

See merge request !631
This commit is contained in:
Torsten Grote
2017-11-30 17:03:07 +00:00
6 changed files with 12 additions and 7 deletions

View File

@@ -98,7 +98,8 @@ class IntroduceeManager {
private static final Logger LOG =
Logger.getLogger(IntroduceeManager.class.getName());
static final String SIGNING_LABEL_RESPONSE = CLIENT_ID + "/RESPONSE";
static final String SIGNING_LABEL_RESPONSE =
CLIENT_ID.getString() + "/RESPONSE";
private final MessageSender messageSender;
private final DatabaseComponent db;