Merge 1430c4b989 into merged_master (Bitcoin PR bitcoin/bitcoin#28883)

This commit is contained in:
Byron Hambly 2025-11-10 13:46:03 +02:00
commit 3ee5c78bb2
No known key found for this signature in database
GPG key ID: DE8F6EA20A661697

View file

@ -30,7 +30,7 @@ logging.basicConfig(
SIGNET_HEADER = b"\xec\xc7\xda\xa2"
PSBT_SIGNET_BLOCK = b"\xfc\x06signetb" # proprietary PSBT global field holding the block being signed
RE_MULTIMINER = re.compile("^(\d+)(-(\d+))?/(\d+)$")
RE_MULTIMINER = re.compile(r"^(\d+)(-(\d+))?/(\d+)$")
def create_coinbase(height, value, spk):
cb = CTransaction()