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
Parsing build info in the EDR provider NAPI constructor should be done on a thread from the blocking thread pool to avoid blocking the JS event loop, but that's difficult to achieve, because the constructor is not an async function (precluded by the Env argument not being Send) and the contract decoder needs to be passed in to the logger which also needs the Env.
The text was updated successfully, but these errors were encountered:
Definition of Done
Parsing build info in the EDR provider NAPI constructor should be done on a thread from the blocking thread pool to avoid blocking the JS event loop, but that's difficult to achieve, because the constructor is not an async function (precluded by the
Env
argument not being Send) and the contract decoder needs to be passed in to the logger which also needs theEnv
.The text was updated successfully, but these errors were encountered: