mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-25 15:10:18 +01:00
Fix a bad comment in TransactionSignature.
This commit is contained in:
parent
02416c97fa
commit
bbe3441128
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue