Add testnet4 branch to contrib history script

Testnet4 uses a different default electrum port than testnet.
This commit is contained in:
yancy 2025-11-11 06:39:49 -06:00 committed by Roman Zeyde
parent b118cbb0d6
commit d5b7a4ffee

View file

@ -42,6 +42,9 @@ def main():
elif args.network == 'testnet':
port = 60001
from pycoin.symbols.xtn import network
elif args.network == 'testnet4':
port = 40001
from pycoin.symbols.xtn import network
elif args.network == 'mainnet':
port = 50001
from pycoin.symbols.btc import network