mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-21 14:24:06 +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 -> {
|
.filter(e -> {
|
||||||
final boolean isInPublicKeyInList = isPublicKeyInList(Utils.HEX.encode(e.getRegistrationPubKey()));
|
final boolean isInPublicKeyInList = isPublicKeyInList(Utils.HEX.encode(e.getRegistrationPubKey()));
|
||||||
if (!isInPublicKeyInList)
|
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(),
|
final boolean isSigValid = verifySignature(e.getPubKeyRing().getSignaturePubKey(),
|
||||||
e.getRegistrationPubKey(),
|
e.getRegistrationPubKey(),
|
||||||
e.getRegistrationSignature());
|
e.getRegistrationSignature());
|
||||||
|
|
Loading…
Add table
Reference in a new issue