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
{{ message }}
This repository has been archived by the owner on Jun 27, 2022. It is now read-only.
We have an app installed on the ledger X. Everything for the app works with the webusb transport without issues. Now switching to the bluetooth transport, the pairing happens fine, but any api calls done on the instance of the app now hangs forever.
So, with webusb while the below works, it isn't with the bluetooth. It hangs on the getAccount step.
const transport = await createTransport();
const app = new VET(transport);
let account = await app.getAccount(${pathPrefix}/${index});
However, if I close the app, the transport errors out. But if I don't close the app, the last line in the code above never returns.
The text was updated successfully, but these errors were encountered:
satb
changed the title
Using bluetooth web transport application method call hangs forever
When using bluetooth web transport, application method call hangs forever
Jan 11, 2020
I think I'm having a similar issue.
I am trying to get an account (using WebUSB), but when I send the command to the Ledger it never returns because an action was already pending (although I haven't sent any actions). #461
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We have an app installed on the ledger X. Everything for the app works with the webusb transport without issues. Now switching to the bluetooth transport, the pairing happens fine, but any api calls done on the instance of the app now hangs forever.
So, with webusb while the below works, it isn't with the bluetooth. It hangs on the getAccount step.
const transport = await createTransport();
const app = new VET(transport);
let account = await app.getAccount(
${pathPrefix}/${index}
);However, if I close the app, the transport errors out. But if I don't close the app, the last line in the code above never returns.
The text was updated successfully, but these errors were encountered: