Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
richardkiss committed Dec 7, 2023
1 parent 367a58e commit dcc7f51
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Version 0.75
* move messages.py to messages module
* add electrum key support to ku tool
* add bloomfilter.py
* add recipies for multisig
* add recipes for multisig

Version 0.70
------------
Expand Down
2 changes: 1 addition & 1 deletion pycoin/cmds/tx.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def create_parser():
help='URL to bitcoind instance to validate against (http://user:pass@host:port).')

parser.add_argument('-o', "--output-file", metavar="path-to-output-file", type=argparse.FileType('wb'),
help='file to write transaction to. This supresses most other output.')
help='file to write transaction to. This suppresses most other output.')

parser.add_argument('-d', "--disassemble", action='store_true',
help='Disassemble scripts.')
Expand Down
2 changes: 1 addition & 1 deletion pycoin/contrib/msg_signing.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def parse_sections(class_, msg_in):
# trim any junk in front
_, body = msg_in.split('SIGNED MESSAGE-----\n', 1)
except ValueError:
raise EncodingError("expecting text SIGNED MESSSAGE somewhere")
raise EncodingError("expecting text SIGNED MESSAGE somewhere")

# - sometimes middle sep is BEGIN BITCOIN SIGNATURE, other times just BEGIN SIGNATURE
# - choose the last instance, in case someone signs a signed message
Expand Down
2 changes: 1 addition & 1 deletion tests/btc/data/script_tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@
["0 0x02 0x0000 0", "CHECKMULTISIGVERIFY 1", "", "OK"],

["While not really correctly DER encoded, the empty signature is allowed by"],
["STRICTENC to provide a compact way to provide a delibrately invalid signature."],
["STRICTENC to provide a compact way to provide a deliberately invalid signature."],
["0", "0x21 0x02865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac0 CHECKSIG NOT", "STRICTENC", "OK"],
["0 0", "1 0x21 0x02865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac0 1 CHECKMULTISIG NOT", "STRICTENC", "OK"],

Expand Down
2 changes: 1 addition & 1 deletion tests/ecdsa/libsecp256k1_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_multiply_by_group_generator(self):
27657251006027960104028534670901169416706551781681983309292004861017889370444)
)

def test_sign_verify_mutual_compatability(self):
def test_sign_verify_mutual_compatibility(self):
if libsecp256k1 is None:
raise unittest.SkipTest("no libsecp256k1")
ctx = libsecp256k1.ctx
Expand Down

0 comments on commit dcc7f51

Please sign in to comment.