make autosign a config file option
If set in the config file, the option may be overridden on the command line with --no-autosign
This commit is contained in:
parent
2f65a75f7e
commit
6ceff42ff8
2 changed files with 6 additions and 0 deletions
|
|
@ -221,6 +221,7 @@ class Config(Lockable):
|
|||
force_standalone_scrypt_module = False
|
||||
enable_erigon = False
|
||||
autochg_ignore_labels = False
|
||||
autosign = False
|
||||
|
||||
# regtest:
|
||||
bob = False
|
||||
|
|
@ -287,6 +288,7 @@ class Config(Lockable):
|
|||
# coin-specific only: bch_cashaddr (alias of cashaddr)
|
||||
_cfg_file_opts = (
|
||||
'autochg_ignore_labels',
|
||||
'autosign',
|
||||
'color',
|
||||
'daemon_data_dir',
|
||||
'debug',
|
||||
|
|
|
|||
|
|
@ -85,6 +85,10 @@
|
|||
# variants (see below):
|
||||
# tw_name my-other-tracking-wallet
|
||||
|
||||
# Uncomment to make autosign with automount the default. Can be overridden
|
||||
# on the command line with --no-autosign
|
||||
# autosign true
|
||||
|
||||
#####################################################################
|
||||
## RPC options. These also have coin-specific variants (see below) ##
|
||||
#####################################################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue