3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-30 23:02:15 +00:00

Add TransactionOutPoint.setIndex

This commit is contained in:
Matt Corallo 2012-09-05 23:00:05 -04:00 committed by Mike Hearn
parent da0f8a791b
commit 5321352820

View File

@ -180,6 +180,13 @@ public class TransactionOutPoint extends ChildMessage implements Serializable {
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
* is transient so if the object has parseLazy = true and hasn't invoked checkParse yet