Skip to content

Commit

Permalink
fix: disconnect error during transport reset (iOS devices only) (#231)
Browse files Browse the repository at this point in the history
Currently, in iOS devices a disconnect error will be thrown when trying to reset the transport object. The reason for this is because the ETH app hasn't been recreated with the new transport object, even though the transport has the same properties as the previous one.

Note: We do not see this in Android devices, the setup and communication will work correctly without the need to reset the transport object.

Co-authored-by: Gustavo Antunes <[email protected]>
  • Loading branch information
dawnseeker8 and gantunesr authored Jul 10, 2024
1 parent cbace1f commit 3a82a2b
Show file tree
Hide file tree
Showing 5 changed files with 699 additions and 661 deletions.
6 changes: 3 additions & 3 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ module.exports = {
// An object that configures minimum threshold enforcement for coverage results
coverageThreshold: {
global: {
branches: 87.94,
branches: 89.28,
functions: 95.91,
lines: 91.13,
statements: 91.22,
lines: 91.32,
statements: 91.41,
},
},

Expand Down
Loading

0 comments on commit 3a82a2b

Please sign in to comment.