You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BDK signs using the sighash specified in the PSBT (or ALL if it's not provided). It's currently up to the user of the library to check that the PSBT they are signing doesn't have a dangerous sighash, but to avoid accidents it's probably better to have this check internally and force the user to explicitly opt-in to use non-ALL sighashes.
The text was updated successfully, but these errors were encountered:
afilini
added a commit
to afilini/bdk
that referenced
this issue
May 26, 2021
Instead of blindly using the `sighash_type` set in a psbt input, we
now only sign `SIGHASH_ALL` inputs by default, and require the user to
explicitly opt-in to using other sighashes if they desire.
Fixesbitcoindevkit#350
BDK signs using the sighash specified in the PSBT (or
ALL
if it's not provided). It's currently up to the user of the library to check that the PSBT they are signing doesn't have a dangerous sighash, but to avoid accidents it's probably better to have this check internally and force the user to explicitly opt-in to use non-ALL sighashes.The text was updated successfully, but these errors were encountered: