aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol.go
Commit message (Collapse)AuthorAgeFilesLines
* Moved ethutil => commonobscuren2015-03-161-7/+7
|
* Bump protocol version 58obscuren2015-03-131-1/+1
|
* debug comments & pow handlingobscuren2015-03-061-2/+1
|
* Merge branch 'p2p-handshake-2' of https://github.com/fjl/go-ethereum into ↵obscuren2015-03-061-15/+21
|\ | | | | | | fjl-p2p-handshake-2
| * eth, whisper: fix msg.Payload readsFelix Lange2015-03-041-15/+21
| |
* | Miner fixes and updates (including miner)obscuren2015-03-051-1/+1
|/
* Clean up REPLobscuren2015-03-041-1/+2
|
* Merge branch 'jsonlogs' of https://github.com/ethersphere/go-ethereum into ↵obscuren2015-03-041-0/+16
|\ | | | | | | | | | | | | | | | | | | ethersphere-jsonlogs Conflicts: eth/block_pool.go eth/block_pool_test.go eth/protocol_test.go miner/worker.go
| * add eth.chain.received.new_block log to eth protocolzelig2015-03-031-1/+9
| |
| * Add event eth.tx.receivedTaylor Gerring2015-03-021-0/+7
| |
* | fixed pow stuffobscuren2015-03-041-1/+1
| |
* | integrate blockpool into ethzelig2015-02-251-26/+43
|/ | | | | | - remove blockpool code - remove blockpool integration test (kinda embarrassing) - remove errors.go
* Minor updates for releaseobscuren2015-02-211-1/+1
|
* dirty tracking for state objects fixedobscuren2015-02-201-1/+1
|
* cmd/ethereum, cmd/mist, core, eth, javascript, xeth: fixes for new p2p APIFelix Lange2015-02-061-1/+2
|
* Propagate known transactions to new peers on connectobscuren2015-02-051-0/+12
|
* upped pvobscuren2015-01-291-1/+1
|
* 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