We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ccfd2 commit c4980ebCopy full SHA for c4980eb
src/generation/base_type_generator.mts
@@ -65,7 +65,7 @@ export abstract class BaseTypeGenerator<Type extends RustType> {
65
if (typeName && typeName.startsWith('LDK')) {
66
const ldkLessTypeName = typeName.substring('LDK'.length);
67
if (ldkLessTypeName.charAt(0) === 'C') {
68
- if (ldkLessTypeName.startsWith('C2Tuple_') || ldkLessTypeName.startsWith('C3Tuple_')) {
+ if (ldkLessTypeName.startsWith('C2Tuple_') || ldkLessTypeName.startsWith('C3Tuple_') || ldkLessTypeName.startsWith('C4Tuple_')) {
69
return ldkLessTypeName.substring(2);
70
}
71
0 commit comments