don't generate deterministic address by default

This commit is contained in:
2026-03-18 11:36:27 +03:00
parent 7761772dda
commit ccac2e970a
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ import xmlrpclib
api_user=os.getenv('BITMESSAGE_API_USER', 'bitmessage_api_user') ;
api_password=os.getenv('BITMESSAGE_API_PASSWORD', 'bitmessage_api_password') ;
api_port=os.getenv('BITMESSAGE_API_PORT', '8442') ;
addr_num=os.getenv('BITMESSAGE_SEED_ADDRESSES', '1') ;
addr_num=os.getenv('BITMESSAGE_SEED_ADDRESSES', '0') ;
addr_seed=os.getenv('BITMESSAGE_SEED_PHRASE') ;
api_link="http://{}:{}@127.0.0.1:{}/".format(api_user, api_password, api_port)