mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 18:00:39 +01:00
Add TransactionOutPoint.setIndex
This commit is contained in:
parent
da0f8a791b
commit
5321352820
@ -179,6 +179,13 @@ public class TransactionOutPoint extends ChildMessage implements Serializable {
|
||||
maybeParse();
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user