mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-07 06:44:16 +00:00
Add TransactionOutPoint.setIndex
This commit is contained in:
parent
da0f8a791b
commit
5321352820
@ -180,6 +180,13 @@ public class TransactionOutPoint extends ChildMessage implements Serializable {
|
|||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param index the index to set
|
||||||
|
*/
|
||||||
|
void setIndex(long index) {
|
||||||
|
this.index = index;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ensure object is fully parsed before invoking java serialization. The backing byte array
|
* Ensure object is fully parsed before invoking java serialization. The backing byte array
|
||||||
* is transient so if the object has parseLazy = true and hasn't invoked checkParse yet
|
* is transient so if the object has parseLazy = true and hasn't invoked checkParse yet
|
||||||
|
Loading…
Reference in New Issue
Block a user