Skip to content

Commit

Permalink
AddressMessage: According to https://en.bitcoin.it/wiki/Protocol_docu…
Browse files Browse the repository at this point in the history
…mentation#addr, it can contain only 1000 entries.
  • Loading branch information
Andreas Schildbach authored and ripcurlx committed Aug 17, 2021
1 parent eaf7470 commit 94e3376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/bitcoinj/core/AddressMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*/
public class AddressMessage extends Message {

private static final long MAX_ADDRESSES = 1024;
private static final long MAX_ADDRESSES = 1000;
private List<PeerAddress> addresses;

/**
Expand Down

0 comments on commit 94e3376

Please sign in to comment.