mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 22:58:32 +01:00
Fix duplicate 'BTC' in log message.
This commit is contained in:
parent
4b65e37914
commit
113d7bc445
1 changed files with 1 additions and 1 deletions
|
@ -3427,7 +3427,7 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
|
||||||
|
|
||||||
final Coin calculatedFee = req.tx.getFee();
|
final Coin calculatedFee = req.tx.getFee();
|
||||||
if (calculatedFee != null) {
|
if (calculatedFee != null) {
|
||||||
log.info(" with a fee of {} BTC", calculatedFee.toFriendlyString());
|
log.info(" with a fee of {}", calculatedFee.toFriendlyString());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Label the transaction as being self created. We can use this later to spend its change output even before
|
// Label the transaction as being self created. We can use this later to spend its change output even before
|
||||||
|
|
Loading…
Add table
Reference in a new issue