Maximilian Schneider
Maximilian Schneider
Correct Vec is already encoded as bytes, hence Uint8Array. I'm currently looking at fixed length u8 arrays: I'm mainly concerned with input validation for overflows, when assigning to `Vec` &...
First case, would return obscure errors like this one, which make it really hard to trace, which field actually caused the error: ``` TypeError: Blob.encode[data] requires (length 32) Buffer as...
The above error comes from passing an Uint8array for a blob(32) struct field, apparently we won't be able to support Uint8Array at all and always need to pass Buffer when...
Yeah, so the idl does preserve array length and type bounds, so it **should** be possible. I'll follow your advise and create a nice lib around the generated code to...
Also dropped the constant array size binding to Buffer approach, turned out to cause some nasty issues when trying to use Anchor's fetch helpers
Ok so golang basics are covered. Could you also explain in more detail how to setup the influxdb datastore in a standard cloud environment? Also, an example walktrough through the...
@dholms could I get some feedback on this PR?
It is indeed misleading, that's why the method has such a clunky name. But it is actually super helpful for application development as you can pretty much hide the whole...
confirmed, it's working now 👍 i was able to withdraw the full amount
The tokio maintainers are aware of the issue: https://github.com/tokio-rs/tokio/issues/4873 They suspect though that it might be caused by bad usage of their library. 1) They requested that someone makes a...