Replies: 1 comment 1 reply
-
Can you temporarily try to see if If it does execute immediately, it means the random number generation logic inside the createRandom (that probably uses |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my react native 0.64 app, Modal is used to handle an user input on Android emulator. An useEffect hook is executed and check the availability of a few parameters. If a key is missing, then a modal will be activated and take input from user, or generate the key for the user. The routing is done with React Navigation 5.x. The problem is that after user click to generate a new key, the code stuck and never end or complete. I find out that the
ethers.Wallet.createRansom()
seems taking forever to finish. Just updated to 5.3.0 from 5.2.0 and the issue is the same. Here is the code:Beta Was this translation helpful? Give feedback.
All reactions