mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-13 11:36:15 +01:00
AddressMessage: According to https://en.bitcoin.it/wiki/Protocol_documentation#addr, it can contain only 1000 entries.
This commit is contained in:
parent
8b74c2681c
commit
f67f47a71c
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ import java.util.List;
|
|||
*/
|
||||
public class AddressMessage extends Message {
|
||||
|
||||
private static final long MAX_ADDRESSES = 1024;
|
||||
private static final long MAX_ADDRESSES = 1000;
|
||||
private List<PeerAddress> addresses;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue