Skip to content

Commit f7cf6cf

Browse files
committed
Merge #771: Support testnet4 chain
f0796e4 Support testnet4 chain (Roman Zeyde) Pull request description: Otherwise, HWI fails with the following error when used as a external signer for Bitcoin Core 28.0: {"error": "hwi.py: error: argument --chain: invalid choice: 'testnet4' (choose from main, test, regtest, signet)", "code": -2} ACKs for top commit: achow101: ACK f0796e4 Tree-SHA512: cd819e47610eeaefbfb3eb3fa2335d035fdea7c7187c25eb16c483c7d94b59bb9ecd382de69e9fbceaf8c7bede6931b6f16b5f765a6dbe4094eda1bbed6ff4bb
2 parents 3174515 + f0796e4 commit f7cf6cf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

hwilib/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class Chain(Enum):
1818
TEST = 1 #: Bitcoin Test network
1919
REGTEST = 2 #: Bitcoin Core Regression Test network
2020
SIGNET = 3 #: Bitcoin Signet
21+
TESTNET4 = 4 #: Bitcoin Test network
2122

2223
def __str__(self) -> str:
2324
return str(self.name).lower()

0 commit comments

Comments
 (0)