@@ -82,6 +82,7 @@ parser::parser(system::chain::selection context) NOEXCEPT
8282 configured.database .output_size = 25'300'000'000 ;
8383 configured.database .output_rate = 5 ;
8484
85+ configured.database .point_buckets = 1'750'905'073 ;
8586 configured.database .point_size = 21'100'000'000 ;
8687 configured.database .point_rate = 5 ;
8788
@@ -91,10 +92,6 @@ parser::parser(system::chain::selection context) NOEXCEPT
9192 configured.database .puts_size = 3'700'000'000 ;
9293 configured.database .puts_rate = 5 ;
9394
94- configured.database .spend_buckets = 1'750'905'073 ;
95- configured.database .spend_size = 10'000'000'000 ;
96- configured.database .spend_rate = 5 ;
97-
9895 configured.database .tx_buckets = 688'193'037 ;
9996 configured.database .tx_size = 17'050'000'000 ;
10097 configured.database .tx_rate = 5 ;
@@ -696,6 +693,11 @@ options_metadata parser::load_settings() THROWS
696693 )
697694
698695 /* point */
696+ (
697+ " database.point_buckets" ,
698+ value<uint32_t >(&configured.database .point_buckets ),
699+ " The number of buckets in the spend table head, defaults to '1750905073'."
700+ )
699701 (
700702 " database.point_size" ,
701703 value<uint64_t >(&configured.database .point_size ),
@@ -731,23 +733,6 @@ options_metadata parser::load_settings() THROWS
731733 " The percentage expansion of the puts table body, defaults to '5'."
732734 )
733735
734- /* spend */
735- (
736- " database.spend_buckets" ,
737- value<uint32_t >(&configured.database .spend_buckets ),
738- " The number of buckets in the spend table head, defaults to '1750905073'."
739- )
740- (
741- " database.spend_size" ,
742- value<uint64_t >(&configured.database .spend_size ),
743- " The minimum allocation of the spend table body, defaults to '10000000000'."
744- )
745- (
746- " database.spend_rate" ,
747- value<uint16_t >(&configured.database .spend_rate ),
748- " The percentage expansion of the spend table body, defaults to '5'."
749- )
750-
751736 /* tx */
752737 (
753738 " database.tx_buckets" ,
0 commit comments