@@ -87,6 +87,8 @@ def run_test(self):
87
87
88
88
def test_persistence (self ):
89
89
'''Test that wallet files persist the avoid_reuse flag.'''
90
+ self .log .info ("Test wallet files persist avoid_reuse flag" )
91
+
90
92
# Configure node 1 to use avoid_reuse
91
93
self .nodes [1 ].setwalletflag ('avoid_reuse' )
92
94
@@ -109,6 +111,8 @@ def test_persistence(self):
109
111
110
112
def test_immutable (self ):
111
113
'''Test immutable wallet flags'''
114
+ self .log .info ("Test immutable wallet flags" )
115
+
112
116
# Attempt to set the disable_private_keys flag; this should not work
113
117
assert_raises_rpc_error (- 8 , "Wallet flag is immutable" , self .nodes [1 ].setwalletflag , 'disable_private_keys' )
114
118
@@ -130,6 +134,7 @@ def test_fund_send_fund_senddirty(self):
130
134
the avoid_reuse flag set to false. This means the 10 BTC send should succeed,
131
135
where it fails in test_fund_send_fund_send.
132
136
'''
137
+ self .log .info ("Test fund send fund send dirty" )
133
138
134
139
fundaddr = self .nodes [1 ].getnewaddress ()
135
140
retaddr = self .nodes [0 ].getnewaddress ()
@@ -183,6 +188,7 @@ def test_fund_send_fund_send(self):
183
188
[1] tries to spend 10 BTC (fails; dirty).
184
189
[1] tries to spend 4 BTC (succeeds; change address sufficient)
185
190
'''
191
+ self .log .info ("Test fund send fund send" )
186
192
187
193
fundaddr = self .nodes [1 ].getnewaddress ()
188
194
retaddr = self .nodes [0 ].getnewaddress ()
0 commit comments