Fix log msg in BtcCoinSelector

This commit is contained in:
Oscar Guindzberg 2020-09-14 18:44:42 -03:00
parent e85c66b810
commit 0c7f3456b6
No known key found for this signature in database
GPG key ID: 209796BF2E1D4F75

View file

@ -64,7 +64,7 @@ class BtcCoinSelector extends BisqDefaultCoinSelector {
Address address = WalletService.getAddressFromOutput(output);
return addresses.contains(address);
} else {
log.warn("transactionOutput.getScriptPubKey() not isSentToAddress or isPayToScriptHash");
log.warn("transactionOutput.getScriptPubKey() is not P2PKH nor P2SH nor P2WH");
return false;
}
}