We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13ebdf6 + 7c5e17a commit 0f22005Copy full SHA for 0f22005
1 file changed
src/settings.cpp
@@ -65,6 +65,16 @@ settings::settings(config::settings context)
65
break;
66
}
67
68
+ case config::settings::regtest:
69
+ {
70
+ // TODO: optimize for regtest.
71
+ block_table_buckets = 650000;
72
+ transaction_table_buckets = 110000000;
73
+ spend_table_buckets = 250000000;
74
+ history_table_buckets = 107000000;
75
+ break;
76
+ }
77
+
78
default:
79
case config::settings::none:
80
{
0 commit comments