Skip to content

Commit

Permalink
Adjust default max vote cache size
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed Mar 21, 2024
1 parent 5390cc5 commit 6b33a2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nano/node/vote_cache.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class vote_cache_config final
nano::error serialize (nano::tomlconfig & toml) const;

public:
std::size_t max_size{ 1024 * 128 };
std::size_t max_voters{ 128 };
std::size_t max_size{ 1024 * 64 };
std::size_t max_voters{ 64 };
std::chrono::seconds age_cutoff{ 15 * 60 };
};

Expand Down

0 comments on commit 6b33a2c

Please sign in to comment.