Roman Zeyde
Roman Zeyde
https://github.com/trezor/trezor-firmware/actions/runs/20166153579/job/57889939226?pr=6250
Rebasing to resolve a merge conflict.
Reproduced on T3W1 emulator using: ``` $ core/emu.py -sea & $ trezorctl -vvv eth sign-typed-data -n m/44h/60h/0h/0/0 sign-typed-data.json ``` [`sign-typed-data.json.gz`](https://github.com/user-attachments/files/23860411/sign-typed-data.json.gz) ``` 11.814 trezor.loop ERROR exception: Traceback (most recent call last):...
Logs when lockup happens: # Device log ``` 13.457 trezor.wire.thp.channel INFO [USBIF] (cid: 81f7) write message: EthereumTypedDataValueRequest 13.457 trezor.wire.thp.channel DEBUG [USBIF] message contents: EthereumTypedDataValueRequest { member_path: [1, 2] } 13.457...
IIUC, since the error happens after encrypting the `EthereumTypedDataValueAck` message, the device won't be able to decrypt the next message (`EndSession`) since it didn't received the previous one (due to...
This is still unresolved - the issue here is that the client sends a message which cannot be decoded on the device (since it's length is above [the maximal supported...
> Some of the PR description is reused from the previous PR, but is now stale. Good catch, thanks! Updated PR description: https://github.com/bitcoin/bitcoin/pull/33657#issue-3529967048
Many thanks @ubbabeck! > If there are any additional test you'd like me to help with let me know. It would be interesting to compare the performance for single transaction...
Tested the performance of the new REST endpoint using `ab` on mainnet with various `SIZE` parameters: ``` $ BLOCKHASH=00000000000000000001eae3683a5350b67ddb17d9c7b6c8010ab5b36ccbaa09 $ ab -q -k -c 1 -n 100000 'http://localhost:8332/rest/blockpart/BLOCKHASH.bin?offset=0&size=SIZE' ``` |...
> do you have a proof-of-concept for the tx indexer that will utilize this? Yes - I am working on a PR to adapt `bindex` to use the new REST...