From 1356700e2bd02e43e64774ce830e3e2a259bc3ab Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 23 Sep 2020 10:42:13 +0930 Subject: [PATCH] bitcoin/chainparams: signet uses the same P2PKH and P2SH version bytes as testnet. Signed-off-by: Rusty Russell --- bitcoin/chainparams.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitcoin/chainparams.c b/bitcoin/chainparams.c index 5a79e7e8e..592da1869 100644 --- a/bitcoin/chainparams.c +++ b/bitcoin/chainparams.c @@ -91,8 +91,8 @@ const struct chainparams networks[] = { .max_funding = AMOUNT_SAT_INIT((1 << 24) - 1), .max_payment = AMOUNT_MSAT_INIT(0xFFFFFFFFULL), .when_lightning_became_cool = 1, - .p2pkh_version = 125, - .p2sh_version = 87, + .p2pkh_version = 111, + .p2sh_version = 196, .testnet = true, .bip32_key_version = {.bip32_pubkey_version = BIP32_VER_SIGT_PUBLIC, .bip32_privkey_version = BIP32_VER_SIGT_PRIVATE}, .is_elements = false,