You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A vector or a box of custom structs cannot currently be returned from a function (see rustwasm/wasm-bindgen#111). So generate_kfrags() has to convert KeyFrags to JsValues, which will make testing harder. Need to fix it when the blocker is fixed.
The text was updated successfully, but these errors were encountered:
Now using a custom type VerifiedKeyFragArray declared as TS VerifiedKeyFrag[] and a manual conversion, to generate a correct TS signature. The internals can be updated when wasm-bindgen fixes the underlying issue.
A vector or a box of custom structs cannot currently be returned from a function (see rustwasm/wasm-bindgen#111). So
generate_kfrags()
has to convertKeyFrag
s toJsValue
s, which will make testing harder. Need to fix it when the blocker is fixed.The text was updated successfully, but these errors were encountered: