ElementsProject / elements-miniscript

Creative Commons Zero v1.0 Universal
11 stars 14 forks source link

descriptor: drop `to_string_no_chksum` method #86

Open apoelstra opened 2 months ago

apoelstra commented 2 months ago

This method has been made redundant by the {:#} display specifier since 7577e8ceda6d7c83be4f4422ec9be39c11f9050c two years ago. It is poorly named, inefficient since it always requires allocating a String, and also broken because it uses debug display for keys.

All of our unit tests were converted over to use :# which is why it wasn't noticed that this method didn't work.

Fixes #34 Fixes #85