Skip to content

Commit

Permalink
kad: Increase num of bytes accepted by a record
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandru Vasile <[email protected]>
  • Loading branch information
lexnv committed Apr 18, 2024
1 parent ff718fa commit 567243c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/protocol/libp2p/kademlia/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl Default for MemoryStoreConfig {
fn default() -> Self {
Self {
max_records: 1024,
max_record_size_bytes: 1024,
max_record_size_bytes: 65 * 1024,
}
}
}
Expand Down

0 comments on commit 567243c

Please sign in to comment.