From 4993d662d7af6bf5ec998ebd4fa1e5444f8cebe4 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 18 Dec 2024 19:33:34 +0000 Subject: [PATCH] Fix --catch-up=bootstrap-always --- counterparty-core/counterpartycore/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index b39b513ad..c9cdecfcf 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -757,7 +757,7 @@ def start_all(args): if ( not os.path.exists(config.DATABASE) and args.catch_up == "bootstrap" ) or args.catch_up == "bootstrap-always": - bootstrap(no_confirm=True, snapshot_url=args.bootstrap_url) + bootstrap.bootstrap(no_confirm=True, snapshot_url=args.bootstrap_url) # Initialise database db = database.initialise_db()