Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions console/executor_dumps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ void executor::dump_body_sizes() const
query_.confirmed_body_size() %
query_.ecdsa_body_size() %
query_.schnorr_body_size() %
query_.multisig_body_size() %
query_.duplicate_body_size() %
query_.prevout_body_size() %
query_.strong_tx_body_size() %
Expand All @@ -126,7 +125,6 @@ void executor::dump_records() const
query_.confirmed_records() %
query_.ecdsa_records() %
query_.schnorr_records() %
query_.multisig_records() %
query_.duplicate_records() %
query_.strong_tx_records() %
query_.filter_bk_records() %
Expand Down
26 changes: 12 additions & 14 deletions console/localize.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,14 @@
" confirmed :%10%\n" \
" ecdsa :%11%\n" \
" schnorr :%12%\n" \
" multisig :%13%\n" \
" duplicate :%14%\n" \
" prevout :%15%\n" \
" strong_tx :%16%\n" \
" valid_bk :%17%\n" \
" valid_tx :%18%\n" \
" filter_bk :%19%\n" \
" filter_tx :%20%\n" \
" address :%21%"
" duplicate :%13%\n" \
" prevout :%14%\n" \
" strong_tx :%15%\n" \
" valid_bk :%16%\n" \
" valid_tx :%17%\n" \
" filter_bk :%18%\n" \
" filter_tx :%19%\n" \
" address :%20%"
#define BS_INFORMATION_RECORDS \
"Table records...\n" \
" header :%1%\n" \
Expand All @@ -107,11 +106,10 @@
" confirmed :%7%\n" \
" ecdsa :%8%\n" \
" schnorr :%9%\n" \
" multisig :%10%\n" \
" duplicate :%11%\n" \
" strong_tx :%12%\n" \
" filter_bk :%13%\n" \
" address :%14%"
" duplicate :%10%\n" \
" strong_tx :%11%\n" \
" filter_bk :%12%\n" \
" address :%13%"
#define BS_INFORMATION_SLABS \
"Table slabs..."
#define BS_INFORMATION_SLABS_ROW \
Expand Down
23 changes: 4 additions & 19 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,6 @@ parser::parser(system::chain::selection context,
configured.database.schnorr_size = 1;
configured.database.schnorr_rate = 5;

configured.database.multisig_size = 1;
configured.database.multisig_rate = 5;

configured.database.duplicate_buckets = 1024;
configured.database.duplicate_size = 44;
configured.database.duplicate_rate = 5;
Expand Down Expand Up @@ -323,7 +320,7 @@ options_metadata parser::load_settings() THROWS
(
"forks.retarget",
value<bool>(&configured.bitcoin.forks.retarget),
"Retarget difficulty, defaults to 'true'."
"Retarget difficulty, defaults to 'true' (use false for regtest)."
)
(
"forks.bip16",
Expand Down Expand Up @@ -403,17 +400,17 @@ options_metadata parser::load_settings() THROWS
(
"forks.time_warp_patch",
value<bool>(&configured.bitcoin.forks.time_warp_patch),
"Fix time warp bug, defaults to 'false' (hard fork)."
"Fix time warp bug, defaults to 'false' (litecoin)."
)
(
"forks.retarget_overflow_patch",
value<bool>(&configured.bitcoin.forks.retarget_overflow_patch),
"Fix target overflow for very low difficulty, defaults to 'false' (hard fork)."
"Fix target overflow for very low difficulty, defaults to 'false' (litecoin)."
)
(
"forks.scrypt_proof_of_work",
value<bool>(&configured.bitcoin.forks.scrypt_proof_of_work),
"Use scrypt hashing for proof of work, defaults to 'false' (hard fork)."
"Use scrypt hashing for proof of work, defaults to 'false' (litecoin)."
)

/* [bitcoin] */
Expand Down Expand Up @@ -1616,18 +1613,6 @@ options_metadata parser::load_settings() THROWS
"The percentage expansion of the batch_schnorr table body, defaults to '5'."
)

/* multisig */
(
"database.multisig_size",
value<uint64_t>(&configured.database.multisig_size),
"The minimum allocation of the batch_multisig table body, defaults to '1'."
)
(
"database.multisig_rate",
value<uint16_t>(&configured.database.multisig_rate),
"The percentage expansion of the batch_multisig table body, defaults to '5'."
)

/* duplicate */
(
"database.duplicate_buckets",
Expand Down
Loading