Skip to content
Snippets Groups Projects
Commit 29e17f92 authored by Éloïs's avatar Éloïs
Browse files

[feat] conf: #1359 enable `--store-txs` by default, when BMA is enable

parent 2db0846e
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,10 @@ module.exports = {
CommonConstants.SWITCH_ON_BRANCH_AHEAD_BY_X_BLOCKS;
// Transactions storage
if (program.storeTxs) {
if (
program.storeTxs ||
(program.storeTxs === undefined && !conf.nobma)
) {
if (!conf.storage) {
conf.storage = { transactions: true, wotwizard: false };
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment