From 729b84ed45eea7a9b6925ea2383b35728657af6c Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Thu, 30 May 2019 09:10:06 +0200 Subject: [PATCH] ECKey: Fix JavaDoc encoding error on Windows. --- core/src/main/java/org/bitcoinj/core/ECKey.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/bitcoinj/core/ECKey.java b/core/src/main/java/org/bitcoinj/core/ECKey.java index c703588c..926936e3 100644 --- a/core/src/main/java/org/bitcoinj/core/ECKey.java +++ b/core/src/main/java/org/bitcoinj/core/ECKey.java @@ -992,7 +992,7 @@ public class ECKey implements EncryptableItem { // 1.2. Convert the integer x to an octet string X of length mlen using the conversion routine // specified in Section 2.3.7, where mlen = ⌈(log2 p)/8⌉ or mlen = ⌈m/8⌉. // 1.3. Convert the octet string (16 set binary digits)||X to an elliptic curve point R using the - // conversion routine specified in Section 2.3.4. If this conversion routine outputs “invalid”, then + // conversion routine specified in Section 2.3.4. If this conversion routine outputs "invalid", then // do another iteration of Step 1. // // More concisely, what these points mean is to use X as a compressed public key.