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
This relaxes the restriction on the coinbase witness that limited it to
only having one entry that must be 32 bytes; instead there may be up to
255 items on the coinbase witness stack, and they may be any length.
In order to have multiple entries on the coinbase witness stack, the
number of entries must be specified in the coinbase commitment, by
changing the witness commitment from a 36 byte push:
OP_RETURN [ 0xaa 0x21 0xa9 0xed HASH ]
to a 37 byte push:
OP_RETURN [ 0xaa 0x21 0xa9 0xed HASH N ]
where N is the number of entries on the coinbase witness stack (from 0
to 255).
0 commit comments