Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dev log, fix typo in log #4906

Merged
merged 1 commit into from
Dec 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions core/src/main/java/bisq/core/trade/Trade.java
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,6 @@ protected Trade(Offer offer,
txFeeAsLong = txFee.value;
takerFeeAsLong = takerFee.value;
takeOfferDate = new Date().getTime();

log.error("New trade created with offerId={} and Uid={}", offer.getId(), uid);
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ private boolean isConfTxDepositTx(@Nullable TransactionConfidence confidence,
.filter(txId -> txId.equals(takerFeeTxId) || txId.equals(makerFeeTxId))
.count();
if (takerFeeTxId == null && numInputMatches != 1) {
log.warn("We got a transactionConfidenceTx which does not match our inputs. " +
log.warn("We got a transactionConfidenceTx which does not match our inputs. " +
"takerFeeTxId is null (valid if role is buyer as maker) and numInputMatches " +
"is not 1 as expected (for makerFeeTxId). " +
"numInputMatches={}, transactionConfidenceTx={}",
numInputMatches, walletTx);
return false;
} else if (takerFeeTxId != null && numInputMatches != 2) {
log.warn("We got a transactionConfidenceTx which does not match our inputs. " +
log.warn("We got a transactionConfidenceTx which does not match our inputs. " +
"numInputMatches is not 2 as expected (for makerFeeTxId and takerFeeTxId). " +
"numInputMatches={}, transactionConfidenceTx={}",
numInputMatches, walletTx);
Expand Down