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
in CTransaction.stream_deserialize(), if it detects that witness is signalled, it just tries to deserialize the witness and does not check if it is null. Core has a check in this case:
if (!tx.HasWitness()) {
/* It's illegal to encode witnesses when all witness stacks are empty. */
throw std::ios_base::failure("Superfluous witness record");
}
The text was updated successfully, but these errors were encountered:
in
CTransaction.stream_deserialize()
, if it detects that witness is signalled, it just tries to deserialize the witness and does not check if it is null. Core has a check in this case:The text was updated successfully, but these errors were encountered: