As mentioned in #481 (comment), it appears that the planning module doesn't include the varint length for TapScript and TapControlBlock when getting the size, but does for other placeholders:
|
Placeholder::TapScript(s) => s.len(), |
|
Placeholder::TapControlBlock(cb) => cb.serialize().len(), |
Should the varint length be included here for consistency with other placeholders?
Please also see #701 for some other inconsistencies.