mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-23 14:40:40 +01:00
Minor whitespace/doc changes.
This commit is contained in:
parent
3d301fd1fc
commit
d58ad311fe
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ public class TransactionOutPoint extends Message implements Serializable {
|
|||
// This is not part of bitcoin serialization.
|
||||
Transaction fromTx;
|
||||
|
||||
TransactionOutPoint(NetworkParameters params, long index, Transaction fromTx) {
|
||||
TransactionOutPoint(NetworkParameters params, long index, Transaction fromTx) {
|
||||
super(params);
|
||||
this.index = index;
|
||||
if (fromTx != null) {
|
||||
|
|
|
@ -58,7 +58,7 @@ public class TransactionOutput extends Message implements Serializable {
|
|||
this.scriptBytes = Script.createOutputScript(to);
|
||||
}
|
||||
|
||||
/** Used only in creation of the genesis block. */
|
||||
/** Used only in creation of the genesis blocks and in unit tests. */
|
||||
TransactionOutput(NetworkParameters params, byte[] scriptBytes) {
|
||||
super(params);
|
||||
this.scriptBytes = scriptBytes;
|
||||
|
|
Loading…
Add table
Reference in a new issue