File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def run_test(self):
31
31
32
32
# Wallet rebroadcast is first scheduled 1 min sec after startup (see
33
33
# nNextResend in ResendWalletTransactions()). Tell scheduler to call
34
- # MaybeResendWalletTxn now to initialize nNextResend before the first
34
+ # MaybeResendWalletTxs now to initialize nNextResend before the first
35
35
# setmocktime call below.
36
36
node .mockscheduler (60 )
37
37
@@ -60,15 +60,15 @@ def run_test(self):
60
60
twelve_hrs = 12 * 60 * 60
61
61
two_min = 2 * 60
62
62
node .setmocktime (now + twelve_hrs - two_min )
63
- node .mockscheduler (60 ) # Tell scheduler to call MaybeResendWalletTxn now
63
+ node .mockscheduler (60 ) # Tell scheduler to call MaybeResendWalletTxs now
64
64
assert_equal (int (txid , 16 ) in peer_second .get_invs (), False )
65
65
66
66
self .log .info ("Bump time & check that transaction is rebroadcast" )
67
67
# Transaction should be rebroadcast approximately 24 hours in the future,
68
68
# but can range from 12-36. So bump 36 hours to be sure.
69
69
with node .assert_debug_log (['ResendWalletTransactions: resubmit 1 unconfirmed transactions' ]):
70
70
node .setmocktime (now + 36 * 60 * 60 )
71
- # Tell scheduler to call MaybeResendWalletTxn now.
71
+ # Tell scheduler to call MaybeResendWalletTxs now.
72
72
node .mockscheduler (60 )
73
73
# Give some time for trickle to occur
74
74
node .setmocktime (now + 36 * 60 * 60 + 600 )
You can’t perform that action at this time.
0 commit comments