Add a serialVersionUID to TransactionOutPoint. Thanks to Andreas for the report.

BUG=4
This commit is contained in:
Mike Hearn 2011-03-13 12:46:47 +00:00
parent 29e60a460d
commit 7310e294f9

View file

@ -26,6 +26,8 @@ import java.util.List;
* This message is a reference or pointer to an output of a different transaction.
*/
public class TransactionOutPoint extends Message implements Serializable {
private static final long serialVersionUID = -6320880638344662579L;
/** Hash of the transaction to which we refer. */
byte[] hash;
/** Which output of that transaction we are talking about. */