diff options
author | merge-script <fanquake@gmail.com> | 2024-04-25 21:13:28 +0800 |
---|---|---|
committer | merge-script <fanquake@gmail.com> | 2024-04-25 21:13:28 +0800 |
commit | ee1c975f80a0accd991c3c9c82b7eb52a76c6d30 (patch) | |
tree | 171b0a43fd9df146d1f5c9877ffcf082f15c1f3e /test | |
parent | 10f50220724c02efe0ba38717cc64578ffb58ebc (diff) | |
parent | 03e36b3da093e2c23cf51b46f6901cb84ddbf867 (diff) |
Merge bitcoin/bitcoin#29938: Fix typos in description.md and wallet_util.py
03e36b3da093e2c23cf51b46f6901cb84ddbf867 Fix typos in description.md and wallet_util.py (hanmz)
Pull request description:
Fix typos in description.md.
`digestable` => `digestible`
`lenghts` => `lengths`
ACKs for top commit:
maflcko:
ACK 03e36b3da093e2c23cf51b46f6901cb84ddbf867
kristapsk:
ACK 03e36b3da093e2c23cf51b46f6901cb84ddbf867
brunoerg:
utACK 03e36b3da093e2c23cf51b46f6901cb84ddbf867
alfonsoromanz:
ACK 03e36b3da093e2c23cf51b46f6901cb84ddbf867
Tree-SHA512: 592b85f92459e96d35ddb41f2913f950a2ef9b9b74ef85af03a72553893b32e76cc6630091199359140a1d403e61c7354b61f6e09fd122c7c9fb677ce4bd48d6
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/test_framework/wallet_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/wallet_util.py b/test/functional/test_framework/wallet_util.py index d30b00f4a7..2168e607b2 100755 --- a/test/functional/test_framework/wallet_util.py +++ b/test/functional/test_framework/wallet_util.py @@ -165,7 +165,7 @@ class WalletUnlock(): class TestFrameworkWalletUtil(unittest.TestCase): def test_calculate_input_weight(self): SKELETON_BYTES = 32 + 4 + 4 # prevout-txid, prevout-index, sequence - SMALL_LEN_BYTES = 1 # bytes needed for encoding scriptSig / witness item lenghts < 253 + SMALL_LEN_BYTES = 1 # bytes needed for encoding scriptSig / witness item lengths < 253 LARGE_LEN_BYTES = 3 # bytes needed for encoding scriptSig / witness item lengths >= 253 # empty scriptSig, no witness |