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
I think the majority of operations are async because of the async Block.encode, however it only really is like that because the hash interface used to be async only. It's now optinally async and we're just using sha256 which can be sync in Nodejs. We could switch to an Await<T> interface that allows async/sync operation depending on the environment. This might speed up mutations in Nodejs.
The text was updated successfully, but these errors were encountered:
I think the majority of operations are async because of the async
Block.encode
, however it only really is like that because the hash interface used to be async only. It's now optinally async and we're just usingsha256
which can be sync in Nodejs. We could switch to anAwait<T>
interface that allows async/sync operation depending on the environment. This might speed up mutations in Nodejs.The text was updated successfully, but these errors were encountered: