numpde
numpde
Have a usecase for omitting the "success" message, as well: - user signs a transaction (pending toast, potential error message but no success message), - we wait for the transaction...
> @numpde good to know! Would replacing `null` with `''` work in your case? Not sure I understand. I'd expect this kind of construct ```JavaScript const tx = await toast.promise(...
FWIW, I was able to compile with c++11 with the following changes: configure.ac `AC_SUBST(CXXFLAGS, "-std=c++11 -O3")` ClusterReader.cpp `bool good = static_cast(getline(*m_pReader, line));` rmdup.cpp `bool valid = static_cast(getline(*reader_vec[currReaderIdx], line));`
Basically, I'd expect ```Python openai.Image(api_key=api_key).create(...) ``` or ```Python openai.Image.create(api_key=api_key, ...) ``` to work, but they don't. What I did to work-around was: ```Python def create(**kw): worker = openai.Image() assert api_key...
> That makes sense. I've been able to recreate this behavior on Image.create but not on other API calls. Are there any other places you're seeing this issue? I haven't...
Is this still a thing?
My undying admiration for your commit/ment.
Same problem here. How about changing to `structs = [domain, self]` in [that line](https://github.com/ConsenSysMesh/py-eip712-structs/blob/b05c1dfe073644ceef1b339a28cd201cb6d2ea88/eip712_structs/struct.py#L165)?
> The environment variable HIP_PATH, which is set to $ROCM_PATH/hip, should instead be set to $ROCM_PATH Holy smokes! 🙏🏼