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
Currently when we call runEvm in any test, we make the signing request and then make a second encrypted request to get the loaded seed (initializeSeed). The latter request should not ever be necessary and makes running tests twice as long as they should be (and there are a lot of EVM signing requests).
This will avoid an unnecessary call being made for each individual
signing request. It replaces that with a single call at the beginning
of the signing test script.
Fixes#465
Currently when we call
runEvm
in any test, we make the signing request and then make a second encrypted request to get the loaded seed (initializeSeed
). The latter request should not ever be necessary and makes running tests twice as long as they should be (and there are a lot of EVM signing requests).We should pass
seed
as an argument torunEvm
and only callawait initializeSeed(client)
ifseed === null
.The text was updated successfully, but these errors were encountered: