mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-25 07:07:39 +01:00
GetUTXOSMessage: int -> long for flags constant (makes Kotlin interop smoother)
This commit is contained in:
parent
ce22d1a493
commit
f9c6ded2b8
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue