Remove redundant calculateTotalToPay() call

Resolves issue found during https://github.com/bisq-network/bisq/pull/4673
review, and suggested in comment
https://github.com/bisq-network/bisq/pull/4673#discussion_r510111662
This commit is contained in:
ghubstan 2020-10-22 10:55:53 -03:00
parent d463dd14a0
commit 1f3554ef65
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -146,7 +146,6 @@ public class TakeOfferModel implements Model {
feeService.requestFees(() -> {
txFeePerByteFromFeeService = feeService.getTxFeePerByte();
txFeeFromFeeService = offerUtil.getTxFeeBySize(txFeePerByteFromFeeService, feeTxSize);
calculateTotalToPay();
});
}