Maciej Zwoliński
Maciej Zwoliński
Thanks for the response. > The reason why you get an empty devices array in net_now:dump() is that self.devices is always null. To be sure, I just pasted function body...
This is due to the behavior of `httparse` library. When parsing a request with `httparse`, the returned request's `method` part is defined as `Option
I am not sure whether this crate is still maintained, last merged PR was like 4 years ago? *At least* the method part should be reallocated during request parsing however...
Hi, thanks for the reply. Fair enough, I took that answer to the consideration. I wish I could say that I'd maintain this however I've never maintained anything open source...
Not exactly the same but I think still relevant. As a background, we wrote an eth light client smart contract (canister) for the [internet-computer](https://internetcomputer.org/) at [Eiger](https://github.com/eigerco/ethereum-canister). Smart contracts there are...
Hey, I was wrong in my mention, our issue turned out to be the file in tree which was also matched by `.gitignore` rules.
potentially affected crates can be searched with https://github.com/search?q=%2Frustdoc-args.*--cfg.*docs_rs%2F&type=code but that only includes the crates using the `docs_rs` attribute, github doesn't support look around regexes so I didn't find a way...
Wanted to work on this issue and it turned out that this bug is actually an undocumented feature. I found this comment too ```rs /// `wiremock`'s pooling is designed to...
@1ukech3n Your case is likely different, it seems that your connection was dropped as you have port 4133/tcp closed on your router. Please check [FAQ](https://github.com/AleoHQ/snarkOS#2-my-node-is-unable-to-connect-to-peers-on-the-network). From your log: > TRACE...
yeah, `jq` handles numbers only to about 2^53 which is mantissa size in double precision floats. You could try using [`jql`](https://github.com/yamafaktory/jql) instead of `jq`, it will handle u64 and probably...