Nils-Erik Frantzell
Nils-Erik Frantzell
Note that we also use the rating updates to determine how long we should wait until we reconnect to a peer that we were disconnected from. Here's the logic that...
@gumb0 Yea, what you're seeing makes sense since we can successfully connect and peer with the Parity bootnode (my changes won't have any affect given that they only impact nodes...
I've taken a look at the Geth and Parity code - long story short, neither of them have a reputation system and simply disconnect peers which misbehave (and Parity has...
Here are the details of my Geth investigation - Geth manages misbehaving peers by disconnecting from them via `dropPeer `- the relevant Geth component is the downloader which appears to...
Looks like Aleth receives the incoming IPC connection: ``` 0:021> k # Child-SP RetAddr Call Site 00 000000a3`9c9ff4f0 00007ff7`8b1c8c4f aleth!dev::IpcServerBase::GenerateResponse+0x8f [C:\Users\nilse\Documents\Code\aleth\libweb3jsonrpc\IpcServerBase.cpp @ 105] 01 000000a3`9c9ffa10 00007ff7`8b1c6b8b aleth!::operator()+0x1f [C:\Users\nilse\Documents\Code\aleth\libweb3jsonrpc\WinPipeServer.cpp @ 65]...
It looks like when I try to open a Truffle development console connection to Aleth, Truffle executes 3 RPC queries - `net_version` and 2 instances of `eth_accounts`. I need to...
Is full logging enabled (-v4)?
Oh awesome, I was just thinking of putting together a plan for this. Great timing!
I'd like to take a crack at this
My proposed solution (which only depends on the blocks database, where we can only look up blocks via hash): 1. Write the hash of the most recent block to disk...