arik-so / ldk-parser

0 stars 2 forks source link

Make prim. enum variant detection default to panic #39

Closed tnull closed 1 year ago

tnull commented 1 year ago

Fixes #36

arik-so commented 1 year ago

The Test Bindings unit test is failing because abort() is not in scope. It's a trivial fix, just add import Foundation to the primitive enums, just like you see it here: https://github.com/arik-so/ldk-parser/blob/main/out/enums/complex/Bech32Error.swift#L6

tnull commented 1 year ago

The Test Bindings unit test is failing because abort() is not in scope. It's a trivial fix, just add import Foundation to the primitive enums, just like you see it here: https://github.com/arik-so/ldk-parser/blob/main/out/enums/complex/Bech32Error.swift#L6

Uh, excuse the oversight. Should be fixed now.