aleth
aleth copied to clipboard
Aleth – Ethereum C++ client, tools and libraries
Had a hard time building both Aleth and Solidity, which were getting stuck on `make`. Realized I should upgrade my GCC to a more current version, I had the **initial...
1. When retesteth requests accounts for block `0x1` (it does when its verbosity >= 5 and some test fails), confusing error is returned: ``` TRACE 11-11 19:39:22 aleth rpc {"jsonrpc":"2.0","method":"debug_accountRange","params":["0x1",...
This is a draft pull request to reference in EIP-2330: EXTSLOAD opcode https://eips.ethereum.org/EIPS/eip-2330 This is my first pull on aleth and changing the code was a bliss. Let me know...
This is a preview of the EVMC feature https://github.com/ethereum/evmc/pull/32. ## Changes 1. The trace reflects the state of the VM **after** the execution of an opcode. 2. This allows to...
I'm running Aleth locally (built from source, head = 2fd5c084b 3a815618b) with a private chain configuration on Windows 10 and I'm having difficulty connecting to it via IPC using Truffle....
`Block::m_precommit` is supposed to contain the Block's state before any block rewards have been applied: https://github.com/ethereum/aleth/blob/a3cdc87abb8fb30a4293ca3bef28004c5b3ce2d3/libethereum/Block.h#L285 However, the Block assignment operator sets the assignees precommit state to the assigners state...
I've created eip1380 (call-to-self) tests which exercise my LegacyVM implementation (see #5752) and validate gas costs but still need to create tests which validate my aleth-interpreter implementation (which was merged...