diff options
| author | Russell Yanofsky <[email protected]> | 2019-12-19 16:27:15 -0500 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2019-12-19 16:27:15 -0500 |
| commit | 900d8f6f70859f528e84c5c38d0332f81d19df55 (patch) | |
| tree | 77a9236d14f792e881aee790e4cebd7425f1a7cf /test/functional/feature_config_args.py | |
| parent | Merge #17473: refactor: Settings code cleanups (diff) | |
| download | discoin-900d8f6f70859f528e84c5c38d0332f81d19df55.tar.xz discoin-900d8f6f70859f528e84c5c38d0332f81d19df55.zip | |
util: Disallow network-qualified command line options
Previously these were allowed but ignored.
Diffstat (limited to 'test/functional/feature_config_args.py')
| -rwxr-xr-x | test/functional/feature_config_args.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_config_args.py b/test/functional/feature_config_args.py index 801209b1c..8397eb9f5 100755 --- a/test/functional/feature_config_args.py +++ b/test/functional/feature_config_args.py @@ -23,7 +23,7 @@ class ConfArgsTest(BitcoinTestFramework): conf.write('includeconf={}\n'.format(inc_conf_file_path)) self.nodes[0].assert_start_raises_init_error( - expected_msg='Error: Error parsing command line arguments: Invalid parameter -dash_cli', + expected_msg='Error: Error parsing command line arguments: Invalid parameter -dash_cli=1', extra_args=['-dash_cli=1'], ) with open(inc_conf_file_path, 'w', encoding='utf-8') as conf: |