From a26b086d8f77f66fee3fc57dc60e9ff6648d44cd Mon Sep 17 00:00:00 2001 From: Satoshi Nakamoto <65907137+SatoshiNakamotoBitcoin@users.noreply.github.com> Date: Sat, 5 Oct 2024 01:51:19 +0200 Subject: [PATCH] Update PyVanityGen.py --- pybitblock/SPV/PyVanityGen.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pybitblock/SPV/PyVanityGen.py b/pybitblock/SPV/PyVanityGen.py index c9566f34..4246aa7b 100644 --- a/pybitblock/SPV/PyVanityGen.py +++ b/pybitblock/SPV/PyVanityGen.py @@ -8,6 +8,7 @@ witness_type = 'segwit' +#witness_type = 'legacy' def address_search(search_for='1BTC'): global witness_type @@ -29,6 +30,7 @@ def address_search(search_for='1BTC'): raise ValueError(f"This is not a valid base58 or bech32 search string: {search_for}") if is_base58 and not is_bech32: witness_type = 'p2sh-segwit' + #witness_type = 'legacy' print(f"PyBLOCK Searching for {search_for}, witness_type is {witness_type} (pid {os.getpid()})")