3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 14:54:15 +00:00

Fix a bad comment in TransactionSignature.

This commit is contained in:
Mike Hearn 2013-10-01 15:33:20 +02:00
parent 02416c97fa
commit bbe3441128

View File

@ -55,7 +55,7 @@ public class TransactionSignature extends ECKey.ECDSASignature {
* real signature later. * real signature later.
*/ */
public static TransactionSignature dummy() { public static TransactionSignature dummy() {
BigInteger val = BigInteger.ONE.shiftLeft(32 * 8); // 32 byte signatures. BigInteger val = BigInteger.ONE.shiftLeft(32 * 8); // 32 byte components.
return new TransactionSignature(val, val); return new TransactionSignature(val, val);
} }