aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol.go
Commit message (Collapse)AuthorAgeFilesLines
* Limit hashes. Closes #249obscuren2015-01-091-0/+7
|
* no need to call AddBlockHashes when receiving new blockzelig2015-01-091-10/+0
|
* Adjusted difficulty and skip get tx messagesobscuren2015-01-061-1/+1
|
* Don't auto push jeff ...obscuren2015-01-061-0/+1
|
* Changed to poc-8 & removed GetTxsobscuren2015-01-061-1/+0
|
* eth, p2p: remove EncodeMsg from p2p.MsgWriterFelix Lange2015-01-061-4/+4
| | | | | | | | | | | | ...and make it a top-level function instead. The original idea behind having EncodeMsg in the interface was that implementations might be able to encode RLP data to their underlying writer directly instead of buffering the encoded data. The encoder will buffer anyway, so that doesn't matter anymore. Given the recent problems with EncodeMsg (copy-pasted implementation bug) I'd rather implement once, correctly.
* Mergeobscuren2015-01-061-45/+55
|
* Updated protocol versionobscuren2015-01-031-1/+1
|
* Refactored block & Transactionobscuren2014-12-231-1/+1
| | | | * Includes new rlp decoder
* Removed goroutine from "Run"obscuren2014-12-161-8/+8
|
* removed filter manager from baseobscuren2014-12-151-21/+22
|
* blockpool rewritten , tests broken FIXMEzelig2014-12-151-292/+0
|
* protocolzelig2014-12-151-7/+83
| | | | | - new interface explicit backend components txPool, chainManager, blockPool - added protoErrorDisconnect for blockpool callback (FIXME: handling peer disconnects)
* eth protocol changeszelig2014-12-151-3/+94
| | | | | | | | | - changed backend interface - using callbacks for blockPool - use rlp stream for lazy decoding - use peer as logger - add id (peer pubkey) to ethProtocol fields - add testPeer to protocol test (temporary)
* initial commit for eth-p2p integrationzelig2014-12-151-1/+126
|
* protocolzelig2014-12-151-50/+52
| | | | | - new interface explicit backend components txPool, chainManager, blockPool - added protoErrorDisconnect for blockpool callback (FIXME: handling peer disconnects)
* eth protocol changeszelig2014-12-151-57/+79
| | | | | | | | | - changed backend interface - using callbacks for blockPool - use rlp stream for lazy decoding - use peer as logger - add id (peer pubkey) to ethProtocol fields - add testPeer to protocol test (temporary)
* initial commit for eth-p2p integrationzelig2014-12-151-0/+294