From e49aa3afcfa351cb1cf1b16935a2b8d5c452b244 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Mon, 2 Sep 2024 16:30:40 +0200 Subject: [PATCH] Wallet: remove reference to deprecated addWatchedAddress() --- core/src/main/java/org/bitcoinj/wallet/Wallet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/bitcoinj/wallet/Wallet.java b/core/src/main/java/org/bitcoinj/wallet/Wallet.java index 39d3bf40ef7..0b93f9362c4 100644 --- a/core/src/main/java/org/bitcoinj/wallet/Wallet.java +++ b/core/src/main/java/org/bitcoinj/wallet/Wallet.java @@ -1172,7 +1172,7 @@ public boolean isAddressWatched(Address address) { } /** - * Same as {@link #addWatchedAddress(Address, long)} with the current time as the creation time. + * Same as {@link #addWatchedAddress(Address, Instant)} with the current time as the creation time. */ public boolean addWatchedAddress(final Address address) { Instant now = TimeUtils.currentTime();