Results 16 comments of michprev

Agree, dynamic alloc should not be used in peripheral drivers.

This does not allow to stream the video. We have to wait for about 5 minutes before it is possible to load images from the buffer. I am looking for...

@supprot Hi, I think that I understand now - I need to tune camera registers over I2C. Are there available any schematics for Arducam Mini Plus boards (I am interested...

@supprot Thank you very much!! Hope to get it working soon.

This is not exactly a solution for this issue but you should give a try to the new Python-based testing framework that was inspired by Brownie - [Woke testing framework](https://ackeeblockchain.com/woke/docs/latest/testing-framework/overview/)...

This is a bug in Anvil (+ ethers-rs): https://github.com/foundry-rs/foundry/pull/4853 https://github.com/gakonst/ethers-rs/pull/2392

Implemented a workaround in https://github.com/Ackee-Blockchain/woke/commit/0b7ba19ad36d4f65aa6967e861e22fa319d210f1 at a cost of decreased performance (we need to fetch `debug_traceTransaction` instead of `trace_transaction`).

I am experiencing the same issue. Unfortunately, I don't have much experience with Javascript-based testing frameworks, so I don't have an executable example. However, from the logs attached, I hope...

I have pushed logs with all the JSON-RPC communication - https://github.com/michprev/hh-tx-drop-issue/blob/main/logs.txt The important part is: ``` INFO woke.testing.json_rpc.communicator:communicator.py:89 Sending request: {'jsonrpc': '2.0', 'method': 'eth_sendTransaction', 'params': [{'type': '0x2', 'nonce': '0x1', 'to':...

Appreciate your cooperation :raised_hands: Turned out that a second call to `default_chain.mine()` is needed. As you have described, the first transaction has its `gas_limit` set to the block gas limit...