From 234e423ebbaa201828eaae5b0b76b35c3ea5ee5a Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Thu, 20 Nov 2025 15:51:21 +0100 Subject: [PATCH] Change default network from BitcoinMainnet to PalladiumMainnet --- electrum/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/constants.py b/electrum/constants.py index 8196006aa..2ac166c05 100644 --- a/electrum/constants.py +++ b/electrum/constants.py @@ -301,4 +301,4 @@ assert len(NETS_LIST) == len(set([chain.cli_flag() for chain in NETS_LIST])), "c assert len(NETS_LIST) == len(set([chain.config_key() for chain in NETS_LIST])), "config_key must be unique for each concrete AbstractNet" # don't import net directly, import the module instead (so that net is singleton) -net = BitcoinMainnet # type: Type[AbstractNet] +net = PalladiumMainnet # type: Type[AbstractNet]