test: drop unused testnet3 magic bytes

This commit is contained in:
Sjors Provoost 2025-03-03 13:05:53 -05:00
parent 8cfc09fafe
commit d424bd5941
No known key found for this signature in database
GPG key ID: 57FF9BDBCC301009

View file

@ -78,11 +78,10 @@ MAX_OP_RETURN_RELAY = 83
DEFAULT_MEMPOOL_EXPIRY_HOURS = 336 # hours
MAGIC_BYTES = {
"mainnet": b"\xf9\xbe\xb4\xd9", # mainnet
"testnet3": b"\x0b\x11\x09\x07", # testnet3
"testnet4": b"\x1c\x16\x3f\x28", # testnet4
"regtest": b"\xfa\xbf\xb5\xda", # regtest
"signet": b"\x0a\x03\xcf\x40", # signet
"mainnet": b"\xf9\xbe\xb4\xd9",
"testnet4": b"\x1c\x16\x3f\x28",
"regtest": b"\xfa\xbf\xb5\xda",
"signet": b"\x0a\x03\xcf\x40",
}
def sha256(s):