File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 19
19
# Windows disallow control characters (0-31) and /\?%:|"<>
20
20
FILE_CHAR_START = 32 if os .name == 'nt' else 1
21
21
FILE_CHAR_END = 128
22
- FILE_CHAR_BLACKLIST = '/\\ ?%*:|"<>' if os .name == 'nt' else '/'
22
+ FILE_CHAR_BLOCKLIST = '/\\ ?%*:|"<>' if os .name == 'nt' else '/'
23
23
24
24
25
25
def notify_outputname (walletname , txid ):
@@ -32,7 +32,7 @@ def set_test_params(self):
32
32
self .setup_clean_chain = True
33
33
34
34
def setup_network (self ):
35
- self .wallet = '' .join (chr (i ) for i in range (FILE_CHAR_START , FILE_CHAR_END ) if chr (i ) not in FILE_CHAR_BLACKLIST )
35
+ self .wallet = '' .join (chr (i ) for i in range (FILE_CHAR_START , FILE_CHAR_END ) if chr (i ) not in FILE_CHAR_BLOCKLIST )
36
36
self .alertnotify_dir = os .path .join (self .options .tmpdir , "alertnotify" )
37
37
self .blocknotify_dir = os .path .join (self .options .tmpdir , "blocknotify" )
38
38
self .walletnotify_dir = os .path .join (self .options .tmpdir , "walletnotify" )
You can’t perform that action at this time.
0 commit comments