From 67d049b259592cb31577b14ce25633ddfe26cc9b Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Wed, 11 Oct 2023 13:54:39 +0530 Subject: [PATCH] changed multisig member address to bech32 --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 03850e0..9b07bc7 100644 --- a/index.html +++ b/index.html @@ -1998,7 +1998,7 @@ senders = btcOperator.extractLastHexStrings(details.witness).flatMap((hex) => { const { address, required: requiredSignatures, pubKeys } = btcOperator.decodeRedeemScript(hex) || {} console.log(btcOperator.decodeRedeemScript(hex)) - return pubKeys.map(pubKey => btcOperator.address(pubKey)) + return pubKeys.map(pubKey => btcOperator.bech32Address(pubKey)) }) } else { senders = inputs.map(input => input.address)