Skip to content

Commit

Permalink
fixed bootstrap node script again ...
Browse files Browse the repository at this point in the history
  • Loading branch information
F483 committed Jan 23, 2016
1 parent f1c36ae commit 7856108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/start_bootstrap_only_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def parse_args():
return vars(parser.parse_args())


def make_config(port, testgroupb):
def make_config(port):
config = storjnode.config.create()
config["network"]["port"] = port
config["network"]["disable_data_transfer"] = True
Expand All @@ -42,7 +42,7 @@ def make_config(port, testgroupb):

def main():
args = parse_args()
config = make_config(args["port"], args["testgroupb"])
config = make_config(args["port"])
wallet = btctxstore.BtcTxStore().create_wallet()
node = None
try:
Expand Down

0 comments on commit 7856108

Please sign in to comment.