mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-23 14:40:40 +01:00
Add a serialVersionUID to TransactionOutPoint. Thanks to Andreas for the report.
BUG=4
This commit is contained in:
parent
29e60a460d
commit
7310e294f9
1 changed files with 2 additions and 0 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue