mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-01-18 21:32:35 +01:00
Wallet: Make calculateFee() private.
It was likely never meant for public consumption, because it's return type has always been private.
This commit is contained in:
parent
1692cd973e
commit
e3ca8f2d50
@ -4842,7 +4842,7 @@ public class Wallet extends BaseTaggableObject
|
||||
|
||||
//region Fee calculation code
|
||||
|
||||
public FeeCalculation calculateFee(SendRequest req, Coin value, List<TransactionInput> originalInputs,
|
||||
private FeeCalculation calculateFee(SendRequest req, Coin value, List<TransactionInput> originalInputs,
|
||||
boolean needAtLeastReferenceFee, List<TransactionOutput> candidates) throws InsufficientMoneyException {
|
||||
checkState(lock.isHeldByCurrentThread());
|
||||
FeeCalculation result;
|
||||
|
Loading…
Reference in New Issue
Block a user