From: Matt Corallo Date: Thu, 28 Sep 2023 01:14:41 +0000 (+0000) Subject: Use the resolved type name in generic strings, not the original X-Git-Tag: v0.0.117.0^2~11 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=3398c19e2889fbe22590d8991b4ce1bc176ec1bc;hp=3398c19e2889fbe22590d8991b4ce1bc176ec1bc;p=ldk-c-bindings Use the resolved type name in generic strings, not the original This makes some generics less readable, but some more, and reduces generic type pollution. Some cases are a loss, eg `Option_PaymentHashZ` gets converted to `Option_ThirtyTwoBytesZ` (which less less readable but fewer total types as a result), but we ultimately need this because we now have `schnorr::Signature` and `ecdsa::Signature` so we can't rely on just using `Signature` and having it be unique :(. ---