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.
*/
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);
}