Skip to content

Commit

Permalink
Merge pull request #729 from evoskuil/master
Browse files Browse the repository at this point in the history
Increase spend table start size.
  • Loading branch information
evoskuil authored Feb 5, 2025
2 parents fa0cbba + a0ede3f commit 7cd9dd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ parser::parser(system::chain::selection context) NOEXCEPT
configured.database.puts_rate = 5;

configured.database.spend_buckets = 1'751'471'741;
configured.database.spend_size = 16'000'000'000;
configured.database.spend_size = 34'000'000'000;
configured.database.spend_rate = 5;

configured.database.tx_buckets = 688'193'037;
Expand Down Expand Up @@ -710,7 +710,7 @@ options_metadata parser::load_settings() THROWS
(
"database.spend_size",
value<uint64_t>(&configured.database.spend_size),
"The minimum allocation of the spend table body, defaults to '16000000000'."
"The minimum allocation of the spend table body, defaults to '34000000000'."
)
(
"database.spend_rate",
Expand Down

0 comments on commit 7cd9dd7

Please sign in to comment.