Browsing: script
bitcoin core – Redeem script Signature must be zero for failed CHECK(MULTI)SIG operation error
By admin
For the P2SH transaction, an example of the redeem script: redeem_script = CScript([ OP_DUP, my_private_key.pub, OP_CHECKSIG, OP_IF, OP_DROP, OP_0, OP_SWAP,…
I am trying to send the bitcoin with my private key using the script and the bitcoinjs-lib. I am constantly…
I have a 2-of-3 multisig taproot script,create like bitcoinjs-lib:https://github.com/bitcoinjs/bitcoinjs-lib/blob/8d9775c20da03ab40ccbb1971251e71d117bcd8b/test/integration/taproot.spec.ts#L531-L593: builder := txscript.NewScriptBuilder() for i, pk := range leafPubkeys { if…