@@ -23,15 +23,15 @@ def run_test(self):
23
23
self .stop_node (0 )
24
24
25
25
# should not initialize if there are duplicate wallets
26
- self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w1' , '-wallet=w1' ], 'Duplicate -wallet filename' )
26
+ self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w1' , '-wallet=w1' ], 'Error loading wallet w1. Duplicate -wallet filename specified. ' )
27
27
28
28
# should not initialize if wallet file is a directory
29
29
os .mkdir (os .path .join (self .options .tmpdir , 'node0' , 'regtest' , 'w11' ))
30
- self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w11' ], 'Invalid -wallet file' )
30
+ self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w11' ], 'Error loading wallet w11. -wallet filename must be a regular file. ' )
31
31
32
32
# should not initialize if wallet file is a symlink
33
33
os .symlink (os .path .join (self .options .tmpdir , 'node0' , 'regtest' , 'w1' ), os .path .join (self .options .tmpdir , 'node0' , 'regtest' , 'w12' ))
34
- self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w12' ], 'Invalid -wallet file' )
34
+ self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w12' ], 'Error loading wallet w12. -wallet filename must be a regular file. ' )
35
35
36
36
self .nodes [0 ] = self .start_node (0 , self .options .tmpdir , self .extra_args [0 ])
37
37
0 commit comments