Nils-Erik Frantzell

Results 15 issues of Nils-Erik Frantzell

I'm seeing Aleth syncing repeatedly restart due to it receiving what I suspect to be an ETC block header for dao hard fork block + 1: ``` INFO 12-04 20:38:44...

sync

Aleth's databases are currently created in `$HOME\.Ethereum` on *nix and `%APPDATA%\Ethereum` on Windows. Geth creates its databases in `$HOME\.Ethereum\geth` and `%APPDATA%\Ethereum\geth`. Aleth's databases should be created in an "Aleth" sub-directory...

I've run into a case where Aleth gets stuck while syncing mainnet - it looks like the Client thread work loop (`Client::doWork`) stops executing due to a network exception which...

bug

@gumb0 Reported that Aleth doesn't work with retesteth and that this needs to be investigated and fixed.

test

Exceptions can be thrown during syncing if a peer reconnects while there's a pending disconnect - there will be a live `Session` (entry in `Host::m_sessions` which is still alive and...

networking

Aleth contains support for rebuilding its extras and state database - the rebuild functionality consists of Aleth deleting the existing state database and renaming the extras database (to extras.old), then...

database

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...

bug

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...

(Originally found when investigating #5312 ) I hit a case when syncing Aleth where it ends up on a Ropsten fork and stops syncing because it's unable to sync with...

sync