aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorstickies-v <stickies-v@protonmail.com>2022-08-25 08:55:50 +0100
committerstickies-v <stickies-v@protonmail.com>2022-08-25 14:29:26 +0100
commit5ef8c2c9fc4ebce6cbfea6a55a89a0ab7ee98a1a (patch)
tree7758af803c13d9e833b551c7df159e13f7100715 /test
parentfbba4a131647c991afc53b6a3dfb9721f5c430b2 (diff)
downloadbitcoin-5ef8c2c9fc4ebce6cbfea6a55a89a0ab7ee98a1a.tar.xz
test: fix typo for MaybeResendWalletTxs
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/wallet_resendwallettransactions.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/wallet_resendwallettransactions.py b/test/functional/wallet_resendwallettransactions.py
index 7877c0a88f..4ef259efe1 100755
--- a/test/functional/wallet_resendwallettransactions.py
+++ b/test/functional/wallet_resendwallettransactions.py
@@ -31,7 +31,7 @@ class ResendWalletTransactionsTest(BitcoinTestFramework):
# Wallet rebroadcast is first scheduled 1 min sec after startup (see
# nNextResend in ResendWalletTransactions()). Tell scheduler to call
- # MaybeResendWalletTxn now to initialize nNextResend before the first
+ # MaybeResendWalletTxs now to initialize nNextResend before the first
# setmocktime call below.
node.mockscheduler(60)
@@ -60,7 +60,7 @@ class ResendWalletTransactionsTest(BitcoinTestFramework):
twelve_hrs = 12 * 60 * 60
two_min = 2 * 60
node.setmocktime(now + twelve_hrs - two_min)
- node.mockscheduler(60) # Tell scheduler to call MaybeResendWalletTxn now
+ node.mockscheduler(60) # Tell scheduler to call MaybeResendWalletTxs now
assert_equal(int(txid, 16) in peer_second.get_invs(), False)
self.log.info("Bump time & check that transaction is rebroadcast")
@@ -68,7 +68,7 @@ class ResendWalletTransactionsTest(BitcoinTestFramework):
# but can range from 12-36. So bump 36 hours to be sure.
with node.assert_debug_log(['ResendWalletTransactions: resubmit 1 unconfirmed transactions']):
node.setmocktime(now + 36 * 60 * 60)
- # Tell scheduler to call MaybeResendWalletTxn now.
+ # Tell scheduler to call MaybeResendWalletTxs now.
node.mockscheduler(60)
# Give some time for trickle to occur
node.setmocktime(now + 36 * 60 * 60 + 600)