mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-07-31 20:11:23 +00:00
Add a serialVersionUID to TransactionOutPoint. Thanks to Andreas for the report.
BUG=4
This commit is contained in:
@@ -26,6 +26,8 @@ import java.util.List;
|
|||||||
* This message is a reference or pointer to an output of a different transaction.
|
* This message is a reference or pointer to an output of a different transaction.
|
||||||
*/
|
*/
|
||||||
public class TransactionOutPoint extends Message implements Serializable {
|
public class TransactionOutPoint extends Message implements Serializable {
|
||||||
|
private static final long serialVersionUID = -6320880638344662579L;
|
||||||
|
|
||||||
/** Hash of the transaction to which we refer. */
|
/** Hash of the transaction to which we refer. */
|
||||||
byte[] hash;
|
byte[] hash;
|
||||||
/** Which output of that transaction we are talking about. */
|
/** Which output of that transaction we are talking about. */
|
||||||
|
Reference in New Issue
Block a user