File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ void executor::dump_body_sizes() const
96
96
query_.input_body_size () %
97
97
query_.output_body_size () %
98
98
query_.ins_body_size () %
99
- query_.puts_body_size () %
99
+ query_.outs_body_size () %
100
100
query_.candidate_body_size () %
101
101
query_.confirmed_body_size () %
102
102
query_.prevout_body_size () %
@@ -114,7 +114,7 @@ void executor::dump_records() const
114
114
query_.tx_records () %
115
115
query_.point_records () %
116
116
query_.ins_records () %
117
- query_.puts_records () %
117
+ query_.outs_records () %
118
118
query_.candidate_records () %
119
119
query_.confirmed_records () %
120
120
query_.prevout_records () %
Original file line number Diff line number Diff line change @@ -89,8 +89,8 @@ parser::parser(system::chain::selection context) NOEXCEPT
89
89
configured.database .ins_size = 8'550'000'000 ;
90
90
configured.database .ins_rate = 5 ;
91
91
92
- configured.database .puts_size = 3'700'000'000 ;
93
- configured.database .puts_rate = 5 ;
92
+ configured.database .outs_size = 3'700'000'000 ;
93
+ configured.database .outs_rate = 5 ;
94
94
95
95
configured.database .tx_bits = 30 ;
96
96
configured.database .tx_size = 17'000'000'000 ;
@@ -721,15 +721,15 @@ options_metadata parser::load_settings() THROWS
721
721
" The percentage expansion of the ins table body, defaults to '5'."
722
722
)
723
723
724
- /* puts */
724
+ /* outs */
725
725
(
726
- " database.puts_size " ,
727
- value<uint64_t >(&configured.database .puts_size ),
726
+ " database.outs_size " ,
727
+ value<uint64_t >(&configured.database .outs_size ),
728
728
" The minimum allocation of the puts table body, defaults to '3700000000'."
729
729
)
730
730
(
731
- " database.puts_rate " ,
732
- value<uint16_t >(&configured.database .puts_rate ),
731
+ " database.outs_rate " ,
732
+ value<uint16_t >(&configured.database .outs_rate ),
733
733
" The percentage expansion of the puts table body, defaults to '5'."
734
734
)
735
735
You can’t perform that action at this time.
0 commit comments