Skip to content

Commit

Permalink
Merge pull request #744 from evoskuil/master
Browse files Browse the repository at this point in the history
Adapt to puts->outs table rename.
  • Loading branch information
evoskuil authored Feb 27, 2025
2 parents 341aa2f + e1f36d2 commit 15f37e4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions console/executor_dumps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void executor::dump_body_sizes() const
query_.input_body_size() %
query_.output_body_size() %
query_.ins_body_size() %
query_.puts_body_size() %
query_.outs_body_size() %
query_.candidate_body_size() %
query_.confirmed_body_size() %
query_.prevout_body_size() %
Expand All @@ -114,7 +114,7 @@ void executor::dump_records() const
query_.tx_records() %
query_.point_records() %
query_.ins_records() %
query_.puts_records() %
query_.outs_records() %
query_.candidate_records() %
query_.confirmed_records() %
query_.prevout_records() %
Expand Down
14 changes: 7 additions & 7 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ parser::parser(system::chain::selection context) NOEXCEPT
configured.database.ins_size = 8'550'000'000;
configured.database.ins_rate = 5;

configured.database.puts_size = 3'700'000'000;
configured.database.puts_rate = 5;
configured.database.outs_size = 3'700'000'000;
configured.database.outs_rate = 5;

configured.database.tx_bits = 30;
configured.database.tx_size = 17'000'000'000;
Expand Down Expand Up @@ -721,15 +721,15 @@ options_metadata parser::load_settings() THROWS
"The percentage expansion of the ins table body, defaults to '5'."
)

/* puts */
/* outs */
(
"database.puts_size",
value<uint64_t>(&configured.database.puts_size),
"database.outs_size",
value<uint64_t>(&configured.database.outs_size),
"The minimum allocation of the puts table body, defaults to '3700000000'."
)
(
"database.puts_rate",
value<uint16_t>(&configured.database.puts_rate),
"database.outs_rate",
value<uint16_t>(&configured.database.outs_rate),
"The percentage expansion of the puts table body, defaults to '5'."
)

Expand Down

0 comments on commit 15f37e4

Please sign in to comment.