diff --git a/core/src/main/java/org/bitcoinj/core/Wallet.java b/core/src/main/java/org/bitcoinj/core/Wallet.java
index a6debef9..9e406d06 100644
--- a/core/src/main/java/org/bitcoinj/core/Wallet.java
+++ b/core/src/main/java/org/bitcoinj/core/Wallet.java
@@ -176,8 +176,11 @@ public class Wallet extends BaseTaggableObject
// in receive() via Transaction.setBlockAppearance(). As the BlockChain always calls notifyNewBestBlock even if
// it sent transactions to the wallet, without this we'd double count.
private HashSet Whether or not the wallet will ignore received pending transactions that fail the selected
+ * Whether or not the wallet will ignore pending transactions that fail the selected
* {@link RiskAnalysis}. By default, if a transaction is considered risky then it won't enter the wallet
* and won't trigger any event listeners. If you set this property to true, then all transactions will
- * be allowed in regardless of risk. Currently, the {@link DefaultRiskAnalysis} checks for non-finality of
- * transactions. You should not encounter these outside of special protocols.
Note that this property is not serialized. You have to set it each time a Wallet object is constructed, * even if it's loaded from a protocol buffer.
@@ -1322,7 +1322,7 @@ public class Wallet extends BaseTaggableObject /** * See {@link Wallet#setAcceptRiskyTransactions(boolean)} for an explanation of this property. */ - public boolean doesAcceptRiskyTransactions() { + public boolean isAcceptRiskyTransactions() { lock.lock(); try { return acceptRiskyTransactions; @@ -1681,7 +1681,7 @@ public class Wallet extends BaseTaggableObject /** * Given a transaction and an optional list of dependencies (recursive/flattened), returns true if the given * transaction would be rejected by the analyzer, or false otherwise. The result of this call is independent - * of the value of {@link #doesAcceptRiskyTransactions()}. Risky transactions yield a logged warning. If you + * of the value of {@link #isAcceptRiskyTransactions()}. Risky transactions yield a logged warning. If you * want to know the reason why a transaction is risky, create an instance of the {@link RiskAnalysis} yourself * using the factory returned by {@link #getRiskAnalyzer()} and use it directly. */