From 9aa83ad423e9b531c1eef52239ee2d9348f26b6d Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Wed, 18 Jul 2018 19:13:49 -0700 Subject: [PATCH] integration/rpctest: disable the txindex by default In this commit, we disable the txindex by default as the flag cannot be overwritten by btcd once set. --- integration/rpctest/node.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/integration/rpctest/node.go b/integration/rpctest/node.go index 6904499a..6aec2b11 100644 --- a/integration/rpctest/node.go +++ b/integration/rpctest/node.go @@ -115,10 +115,6 @@ func (n *nodeConfig) arguments() []string { args = append(args, fmt.Sprintf("--rpccert=%s", n.certFile)) // --rpckey args = append(args, fmt.Sprintf("--rpckey=%s", n.keyFile)) - // --txindex - args = append(args, "--txindex") - // --addrindex - args = append(args, "--addrindex") if n.dataDir != "" { // --datadir args = append(args, fmt.Sprintf("--datadir=%s", n.dataDir))