From 4f8867c58ede26a739b689e8287d090b63d140c6 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Sun, 9 Mar 2014 19:13:48 +0100 Subject: [PATCH] Fix method name in SendRequest.aesKey javadoc. --- core/src/main/java/com/google/bitcoin/core/Wallet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/google/bitcoin/core/Wallet.java b/core/src/main/java/com/google/bitcoin/core/Wallet.java index 4ce84e04..25e4a135 100644 --- a/core/src/main/java/com/google/bitcoin/core/Wallet.java +++ b/core/src/main/java/com/google/bitcoin/core/Wallet.java @@ -1620,7 +1620,7 @@ public class Wallet implements Serializable, BlockChainListener, PeerFilterProvi /** * The AES key to use to decrypt the private keys before signing. * If null then no decryption will be performed and if decryption is required an exception will be thrown. - * You can get this from a password by doing wallet.getKeyCrypter().derivePassword(password). + * You can get this from a password by doing wallet.getKeyCrypter().deriveKey(password). */ public KeyParameter aesKey = null;