From b09a0aa7ca9965068390b1e1b49f19760a4b8b39 Mon Sep 17 00:00:00 2001 From: Skylar Ray <137945430+sky-coderay@users.noreply.github.com> Date: Mon, 24 Mar 2025 19:51:48 +0200 Subject: [PATCH] Update bip-0069_examples.py --- bip-0069/bip-0069_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bip-0069/bip-0069_examples.py b/bip-0069/bip-0069_examples.py index e2f52edd..8fa1a452 100644 --- a/bip-0069/bip-0069_examples.py +++ b/bip-0069/bip-0069_examples.py @@ -29,7 +29,7 @@ def input_cmp(input_tuple1, input_tuple2): elif (input_tuple1[1] > input_tuple2[1]): return 1 else: - raise ValueError('Matching previous transaction hash and previous transaction output index for two disinct inputs. Invalid!') + raise ValueError('Matching previous transaction hash and previous transaction output index for two distinct inputs. Invalid!') def sort_inputs(input_tuples): return sorted(input_tuples, cmp=input_cmp)