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
We currently have a problem stemming from this library because getrandom is included even when it not necessary (I believe).
The core of the issue is that we have a CosmWasm (wasm based) smart contract where the wasm32-unknown-unknown environment does not allow randomness (it does not have access to JS) and fails to build because of the dependency of getrandom (coming from ring).
We currently have a problem stemming from this library because getrandom is included even when it not necessary (I believe).
The core of the issue is that we have a CosmWasm (wasm based) smart contract where the wasm32-unknown-unknown environment does not allow randomness (it does not have access to JS) and fails to build because of the dependency of getrandom (coming from ring).
Our issue tracking this is here: cosmos/solidity-ibc-eureka#155
We got a comment suggesting this could be solved by avoiding the import under the conditions it is not used: cosmos/solidity-ibc-eureka#155 (comment)
The text was updated successfully, but these errors were encountered: