3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-15 11:45:51 +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 class GetUTXOsMessage extends Message {
public static final int MIN_PROTOCOL_VERSION = 70002; public static final int MIN_PROTOCOL_VERSION = 70002;
/** Bitmask of service flags required for a node to support this command (0x3) */ /** 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 boolean includeMempool;
private ImmutableList<TransactionOutPoint> outPoints; private ImmutableList<TransactionOutPoint> outPoints;