mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
7d0f80bUse anonymous namespace instead of static functions (Pieter Wuille)b61fb71Mention removal of bare multisig IsMine in release notes (Pieter Wuille)9c2a8b8Do not treat bare multisig as IsMine (Pieter Wuille)08f3228Optimization: only test for witness scripts at top level (Pieter Wuille)3619735Track difference between scriptPubKey and P2SH execution in IsMine (Pieter Wuille)ac6ec62Switch to a private version of SigVersion inside IsMine (Pieter Wuille)19fc973Do not expose SigVersion argument to IsMine (Pieter Wuille)fb1dfbbRemove unused IsMine overload (Pieter Wuille)952d821Make CScript -> CScriptID conversion explicit (Pieter Wuille) Pull request description: Currently our wallet code will treat bare multisig outputs (meaning scriptPubKeys with multiple public keys + `OP_CHECKMULTISIG` operator in it) as ours without the user asking for it, as long as all private keys in it are in our wallet. This is a pointless feature. As it only works when all private keys are in one place, it's useless compared to single key outputs (P2PK, P2PKH, P2WPKH, P2SH-P2WPKH), and worse in terms of space, cost, UTXO size, and ability to test (due to lack of address format for them). Furthermore, they are problematic in that producing a list of all `scriptPubKeys` we accept is not tractable (it involves all combinations of all public keys that are ours). In further wallet changes I'd like to move to a model where all scriptPubKeys that are treated as ours are explicit, rather than defined by whatever keys we have. The current behavior of the wallet is very hard to model in such a design, so I'd like to get rid of it. I think there are two options: * Remove it entirely (do not ever accept bare multisig outputs as ours, unless watched) * Only accept bare multisig outputs in situations where the P2SH version of that output would also be acceptable This PR implements the first option. The second option was explored in #12874. Tree-SHA512: 917ed45b3cac864cee53e27f9a3e900390c576277fbd6751b1250becea04d692b3b426fa09065a3399931013bd579c4f3dbeeb29d51d19ed0c64da75d430ad9a
40 KiB
Executable File
40 KiB
Executable File