mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-31 07:12:17 +00:00
Minor whitespace/doc changes.
This commit is contained in:
parent
3d301fd1fc
commit
d58ad311fe
@ -36,7 +36,7 @@ public class TransactionOutPoint extends Message implements Serializable {
|
|||||||
// This is not part of bitcoin serialization.
|
// This is not part of bitcoin serialization.
|
||||||
Transaction fromTx;
|
Transaction fromTx;
|
||||||
|
|
||||||
TransactionOutPoint(NetworkParameters params, long index, Transaction fromTx) {
|
TransactionOutPoint(NetworkParameters params, long index, Transaction fromTx) {
|
||||||
super(params);
|
super(params);
|
||||||
this.index = index;
|
this.index = index;
|
||||||
if (fromTx != null) {
|
if (fromTx != null) {
|
||||||
|
@ -58,7 +58,7 @@ public class TransactionOutput extends Message implements Serializable {
|
|||||||
this.scriptBytes = Script.createOutputScript(to);
|
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) {
|
TransactionOutput(NetworkParameters params, byte[] scriptBytes) {
|
||||||
super(params);
|
super(params);
|
||||||
this.scriptBytes = scriptBytes;
|
this.scriptBytes = scriptBytes;
|
||||||
|
Loading…
Reference in New Issue
Block a user