Skip to content

Commit

Permalink
Fix get assertion hanging
Browse files Browse the repository at this point in the history
  • Loading branch information
broody committed Jul 30, 2024
1 parent d3a6750 commit 1918520
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/account-wasm/pkg/account_wasm_bg.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function makeMutClosure(arg0, arg1, dtor, f) {
return real;
}
function __wbg_adapter_48(arg0, arg1, arg2) {
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h442d5a6e26f6e80a(arg0, arg1, addHeapObject(arg2));
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc0ad0805b5a4bbd8(arg0, arg1, addHeapObject(arg2));
}

let cachedUint32Memory0 = null;
Expand Down Expand Up @@ -268,7 +268,7 @@ function handleError(f, args) {
}
}
function __wbg_adapter_192(arg0, arg1, arg2, arg3) {
wasm.wasm_bindgen__convert__closures__invoke2_mut__h5ac21e00d5fb0b9f(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
wasm.wasm_bindgen__convert__closures__invoke2_mut__h10777f5112bbe5fa(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
}

const CartridgeAccountFinalization = (typeof FinalizationRegistry === 'undefined')
Expand Down Expand Up @@ -1058,7 +1058,7 @@ export function __wbindgen_memory() {
return addHeapObject(ret);
};

export function __wbindgen_closure_wrapper2220(arg0, arg1, arg2) {
export function __wbindgen_closure_wrapper2226(arg0, arg1, arg2) {
const ret = makeMutClosure(arg0, arg1, 469, __wbg_adapter_48);
return addHeapObject(ret);
};
Expand Down
Binary file modified packages/account-wasm/pkg/account_wasm_bg.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/account-wasm/pkg/account_wasm_bg.wasm.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function cartridgeaccount_delegateAccount(a: number): number;
export function __wbindgen_malloc(a: number, b: number): number;
export function __wbindgen_realloc(a: number, b: number, c: number, d: number): number;
export const __wbindgen_export_2: WebAssembly.Table;
export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h442d5a6e26f6e80a(a: number, b: number, c: number): void;
export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc0ad0805b5a4bbd8(a: number, b: number, c: number): void;
export function __wbindgen_add_to_stack_pointer(a: number): number;
export function __wbindgen_exn_store(a: number): void;
export function wasm_bindgen__convert__closures__invoke2_mut__h5ac21e00d5fb0b9f(a: number, b: number, c: number, d: number): void;
export function wasm_bindgen__convert__closures__invoke2_mut__h10777f5112bbe5fa(a: number, b: number, c: number, d: number): void;
2 changes: 1 addition & 1 deletion packages/account-wasm/src/signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl WebauthnOperations for BrowserOperations {
.get_with_options(
&RequestChallengeResponse {
public_key: options,
mediation: Some(Mediation::Conditional),
mediation: None,
}
.into(),
)
Expand Down

0 comments on commit 1918520

Please sign in to comment.