diff --git a/core/src/main/java/io/bisq/core/dao/compensation/CompensationRequestManager.java b/core/src/main/java/io/bisq/core/dao/compensation/CompensationRequestManager.java index 2bc5c0f2a2..e696731278 100644 --- a/core/src/main/java/io/bisq/core/dao/compensation/CompensationRequestManager.java +++ b/core/src/main/java/io/bisq/core/dao/compensation/CompensationRequestManager.java @@ -146,10 +146,6 @@ public class CompensationRequestManager implements PersistedDataHost, BsqBlockCh try (ByteArrayOutputStream outputStream = new ByteArrayOutputStream()) { compensationRequest.setCompensationRequestFee(feeService.getCreateCompensationRequestFee()); compensationRequest.setFeeTx(bsqWalletService.getPreparedBurnFeeTx(compensationRequest.getCompensationRequestFee())); - - String bsqAddress = compensationRequestPayload.getBsqAddress(); - // Remove initial B - bsqAddress = bsqAddress.substring(1, bsqAddress.length()); checkArgument(!compensationRequest.getFeeTx().getInputs().isEmpty(), "preparedTx inputs must not be empty"); // We use the key of the first BSQ input for signing the data @@ -181,11 +177,8 @@ public class CompensationRequestManager implements PersistedDataHost, BsqBlockCh compensationRequest.getIssuanceAddress(bsqWalletService), compensationRequest.getFeeTx(), opReturnData)); - if (contains(compensationRequestPayload)) {log.error("Req found");} compensationRequest.setSignedTx(bsqWalletService.signTx(compensationRequest.getTxWithBtcFee())); - if (contains(compensationRequestPayload)) {log.error("Req found");} } - if (contains(compensationRequestPayload)) {log.error("Req found");} return compensationRequest; }