mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-20 13:54:32 +01:00
Add missing param to log
This commit is contained in:
parent
6904c545b0
commit
b835e7f5a5
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ public class ArbitratorManager {
|
|||
.filter(e -> {
|
||||
final boolean isInPublicKeyInList = isPublicKeyInList(Utils.HEX.encode(e.getRegistrationPubKey()));
|
||||
if (!isInPublicKeyInList)
|
||||
log.warn("We got an arbitrator which is not in our list of publicKeys. Arbitrator=", e.toString());
|
||||
log.warn("We got an arbitrator which is not in our list of publicKeys. Arbitrator={}", e.toString());
|
||||
final boolean isSigValid = verifySignature(e.getPubKeyRing().getSignaturePubKey(),
|
||||
e.getRegistrationPubKey(),
|
||||
e.getRegistrationSignature());
|
||||
|
|
Loading…
Add table
Reference in a new issue