3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 02:35:52 +00:00

GetUTXOSMessage: int -> long for flags constant (makes Kotlin interop smoother)

This commit is contained in:
Mike Hearn 2015-10-08 13:45:34 +02:00
parent ce22d1a493
commit f9c6ded2b8

View File

@ -41,7 +41,7 @@ import java.util.List;
public class GetUTXOsMessage extends Message {
public static final int MIN_PROTOCOL_VERSION = 70002;
/** Bitmask of service flags required for a node to support this command (0x3) */
public static final int SERVICE_FLAGS_REQUIRED = 3;
public static final long SERVICE_FLAGS_REQUIRED = 3;
private boolean includeMempool;
private ImmutableList<TransactionOutPoint> outPoints;