Skip to content

Commit

Permalink
GetUTXOSMessage: int -> long for flags constant (makes Kotlin interop…
Browse files Browse the repository at this point in the history
… smoother)
  • Loading branch information
mikehearn committed Oct 8, 2015
1 parent ce22d1a commit f9c6ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/bitcoinj/core/GetUTXOsMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
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;
Expand Down

0 comments on commit f9c6ded

Please sign in to comment.