aboutsummaryrefslogtreecommitdiffstats
ModeNameSize
-rw-r--r--.arcconfig137logstatsplainblame
-rw-r--r--.gitignore71logstatsplainblame
-rw-r--r--CHANGES101053logstatsplainblame
-rw-r--r--CONTRIBUTING.md314logstatsplainblame
-rw-r--r--COPYRIGHT1445logstatsplainblame
-rw-r--r--GIDs4739logstatsplainblame
d---------Keywords406logstatsplain
-rw-r--r--LEGAL21933logstatsplainblame
-rw-r--r--MOVED583581logstatsplainblame
-rw-r--r--Makefile6343logstatsplainblame
d---------Mk1800logstatsplain
-rw-r--r--README1298logstatsplainblame
d---------Templates350logstatsplain
d---------Tools112logstatsplain
-rw-r--r--UIDs22905logstatsplainblame
-rw-r--r--UPDATING403451logstatsplainblame
d---------accessibility1273logstatsplain
d---------arabic400logstatsplain
d---------archivers8038logstatsplain
d---------astro4550logstatsplain
d---------audio31208logstatsplain
d---------benchmarks2757logstatsplain
d---------biology3123logstatsplain
d---------cad3137logstatsplain
d---------chinese4747logstatsplain
d---------comms6770logstatsplain
d---------converters6232logstatsplain
d---------databases38916logstatsplain
d---------deskutils10796logstatsplain
d---------devel209795logstatsplain
d---------dns7203logstatsplain
d---------editors9895logstatsplain
d---------emulators6216logstatsplain
d---------finance10989logstatsplain
d---------french992logstatsplain
d---------ftp3536logstatsplain
d---------games42448logstatsplain
d---------german1242logstatsplain
d---------graphics40422logstatsplain
d---------hebrew352logstatsplain
d---------hungarian494logstatsplain
d---------irc4943logstatsplain
d---------japanese10928logstatsplain
d---------java4438logstatsplain
d---------korean1489logstatsplain
d---------lang11921logstatsplain
d---------mail28191logstatsplain
d---------math26682logstatsplain
d---------misc17978logstatsplain
d---------multimedia16442logstatsplain
d---------net-im6926logstatsplain
d---------net-mgmt12597logstatsplain
d---------net-p2p3945logstatsplain
d---------net51281logstatsplain
d---------news2637logstatsplain
d---------palm657logstatsplain
d---------polish757logstatsplain
d---------ports-mgmt2495logstatsplain
d---------portuguese733logstatsplain
d---------print9657logstatsplain
d---------russian1785logstatsplain
d---------science6702logstatsplain
d---------security42100logstatsplain
d---------shells1405logstatsplain
d---------sysutils41663logstatsplain
d---------textproc65561logstatsplain
d---------ukrainian465logstatsplain
d---------vietnamese696logstatsplain
d---------www100741logstatsplain
d---------x11-clocks1983logstatsplain
d---------x11-drivers2124logstatsplain
d---------x11-fm1334logstatsplain
d---------x11-fonts7041logstatsplain
d---------x11-servers386logstatsplain
d---------x11-themes7238logstatsplain
d---------x11-toolkits10125logstatsplain
d---------x11-wm4900logstatsplain
d---------x1117746logstatsplain
lumn5'>| | | | | | | fjl-p2p-handshake-2 | * | | | | | | | | eth, p2p: delete p2p.BlacklistFelix Lange2015-03-042-67/+1 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is unused and untested right now. We can bring it back later if required. | * | | | | | | | | p2p: reject messages that cannot be written as simple RLPx framesFelix Lange2015-03-041-0/+5 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until chunked frames are implemented we cannot send messages with a size overflowing uint24. | * | | | | | | | | p2p: restore read/write timeoutsFelix Lange2015-03-045-37/+37 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They got lost in the transition to rlpxFrameRW. | * | | | | | | | | eth, whisper: fix msg.Payload readsFelix Lange2015-03-042-32/+31 | | | | | | | | | | | * | | | | | | | | p2p: msg.Payload contains list dataFelix Lange2015-03-047-75/+25 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With RLPx frames, the message code is contained in the frame and is no longer part of the encoded data. EncodeMsg, Msg.Decode have been updated to match. Code that decodes RLP directly from Msg.Payload will need to change. | * | | | | | | | | p2p: verify protocol handshake node IDFelix Lange2015-03-041-0/+3 | | | | | | | | | | | * | | | | | | | | p2p: make encryption handshake code easier to followFelix Lange2015-03-042-302/+272 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This mostly changes how information is passed around. Instead of using many function parameters and return values, put the entire state in a struct and pass that. This also adds back derivation of ecdhe-shared-secret. I deleted it by accident in a previous refactoring. | * | | | | | | | | p2p/discover: add NodeID.PubkeyFelix Lange2015-03-042-0/+33 | | | | | | | | | | | * | | | | | | | | p2p: make RLPx frame MAC 16 bytes as defined in the specFelix Lange2015-03-042-13/+19 | | | | | | | | | | | * | | | | | | | | p2p: delete frameRWFelix Lange2015-03-042-184/+0 | | | | | | | | | | | * | | | | | | | | p2p: use RLPx frames for messagingFelix Lange2015-03-046-50/+73 | | | | | | | | | | | * | | | | | | | | p2p: encrypted and authenticated RLPx frame I/OFelix Lange2015-03-044-172/+197 | | | | | | | | | | | * | | | | | | | | p2p: add basic RLPx frame I/OFelix Lange2015-03-042-0/+252 | | |_|_|/ / / / / | |/| | | | | | | * | | | | | | | | wip mathobscuren2015-03-063-0/+152 | |_|_|_|_|_|_|/ |/| | | | | | | * | | | | | | | Miner fixes and updates (including miner)obscuren2015-03-0510-32/+45 |/ / / / / / / * | | | | | | Clean up REPLobscuren2015-03-047-166/+141 | | | | | | | * | | | | | | Merge branch 'develop' into poc-9obscuren2015-03-042-14/+12 |\| | | | | | | * | | | | | removed double flag. Closes #421obscuren2015-03-041-1/+0 | | | | | | | | * | | | | | Merge pull request #413 from chfast/pr/jit_build_fixesJeffrey Wilcke2015-03-041-13/+12 | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | JIT build fixes | | * | | | | | Fix JitVm buildPaweł Bylica2015-03-031-1/+1 | | | | | | | | | | * | | | | | Merge remote-tracking branch 'upstream/develop' into evmjitPaweł Bylica2015-03-0347-833/+1204 | | |\ \ \ \ \ \ | | * | | | | | | Add required block numberPaweł Bylica2015-03-031-1/+1 | | | | | | | | | | | * | | | | | | Merge remote-tracking branch 'upstream/develop' into evmjitPaweł Bylica2015-02-248-26/+60 | | |\ \ \ \ \ \ \ | | * \ \ \ \ \ \ \ Merge remote-tracking branch 'upstream/develop' into evmjitPaweł Bylica2015-02-24803-3573/+442114 | | |\ \ \ \ \ \ \ \ | | | | |_|_|/ / / / | | | |/| | | | | | | | * | | | | | | | Update JIT interface to ABI 0.2: code hash added to input data, gas counter ↵Paweł Bylica2015-02-161-11/+10 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | passed as int64 * | | | | | | | | | uncle validationobscuren2015-03-044-30/+46 | | | | | | | | | | * | | | | | | | | | Fixed genesisobscuren2015-03-043-20/+31 | | | | | | | | | | * | | | | | | | | | updated genesisobscuren2015-03-042-1/+4 | | | | | | | | | | * | | | | | | | | | Changed nonce to a uint64obscuren2015-03-0410-25/+30 | | | | | | | | | | * | | | | | | | | | Merge branch 'develop' into poc-9obscuren2015-03-042-34/+0 |\| | | | | | | | | | * | | | | | | | | removed all old filtersobscuren2015-03-042-34/+0 | | | | | | | | | | * | | | | | | | | | Merge branch 'develop' into poc-9obscuren2015-03-049-285/+49 |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go | * | | | | | | | | Merge pull request #411 from ethersphere/readmeJeffrey Wilcke2015-03-045-132/+48 | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [WIP] Update Readme | | * | | | | | | | | db name database -> blockchain in backend error messagezelig2015-03-031-1/+1 | | | | | | | | | | | | | * | | | | | | | | remove threatening coding standards section from READMEzelig2015-03-031-31/+0 | | | | | | | | | | | | | * | | | | | | | | remove obsolete install scriptzelig2015-03-031-53/+0 | | | | | | | | | | | | | * | | | | | | | | minor cleanupzelig2015-03-032-6/+7 | | | | | | | | | | | | | * | | | | | | | | update READMEzelig2015-03-031-42/+41 | | | |_|_|/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - TLDR for godep install - update executable section - cleanup - add several links to wiki | * | | | | | | | | Merge pull request #409 from tgerring/jsonlogsJeffrey Wilcke2015-03-047-24/+40 | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Updated JSON log events | * \ \ \ \ \ \ \ \ \ Merge pull request #408 from tgerring/removewsJeffrey Wilcke2015-03-047-153/+1 | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Remove Websockets RPC transport | | * \ \ \ \ \ \ \ \ \ Merge branch 'develop' of github.com:ethereum/go-ethereum into removewsTaylor Gerring2015-03-0215-150/+153 | | |\ \ \ \ \ \ \ \ \ \ | | | | |/ / / / / / / / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/ethereum/flags.go cmd/mist/flags.go | | * | | | | | | | | | Remove Websockets RPC transportTaylor Gerring2015-03-017-152/+1 | | | | | | | | | | | | * | | | | | | | | | | | Merge branch 'ethersphere-jsonlogs' into poc-9obscuren2015-03-046-29/+64 |\ \ \ \ \ \ \ \ \ \ \ \ | * | | | | | | | | | | | Merge branch 'jsonlogs' of https://github.com/ethersphere/go-ethereum into ↵obscuren2015-03-046-29/+64 |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ethersphere-jsonlogs Conflicts: eth/block_pool.go eth/block_pool_test.go eth/protocol_test.go miner/worker.go | * | | | | | | | | | | | add eth.chain.new_head log to core/chain_managerzelig2015-03-031-3/+12 | | | | | | | | | | | | | | * | | | | | | | | | | | add eth.chain.received.new_block log to eth protocolzelig2015-03-031-1/+9 | | | | | | | | | | | | | | * | | | | | | | | | | | block number is *big.Int, remoteID is stringzelig2015-03-031-9/+9 | | | | | | | | | | | | | | * | | | | | | | | | | | Merge remote-tracking branch 'tgerring/jsonlogs' into jsonlogszelig2015-03-037-24/+40 | |\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / / / | |/| | | / / / / / / / / | | | |_|/ / / / / / / / | | |/| | | | | | | | | | | * | | | | | | | | | Fix logger import in testsTaylor Gerring2015-03-022-5/+5 | | | | | | | | | | | | | | * | | | | | | | | | Add event eth.tx.receivedTaylor Gerring2015-03-021-0/+7 | | | | | | | | | | | | | | * | | | | | | | | | Don't import logger as ethloggerTaylor Gerring2015-03-022-14/+14 | | | | | | | | | | | | | | * | | | | | | | | | Implement eth.miner.new_block eventTaylor Gerring2015-03-012-5/+14 | | | |/ / / / / / / / | | |/| | | | | | | | * | | | | | | | | | | Merge branch 'ethersphere-blockpool2' into poc-9obscuren2015-03-045-51/+89 |\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | * | | | | | | | | | Merge branch 'blockpool2' of https://github.com/ethersphere/go-ethereum into ↵obscuren2015-03-045-51/+89 |/| | | | | | | | | | | | |_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | ethersphere-blockpool2 | * | | | | | | | | partial fix to idle best peer issuezelig2015-03-043-13/+33 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - best peer cannot be idle for more than idleBestPeerTimeout - introduce ErrIdleTooLong fatal error - modify default values | * | | | | | | | | log when added peer is behind (hash found in blockchain)zelig2015-03-031-0/+1 | | | | | | | | | | | * | | | | | | | | Merge remote-tracking branch 'upstream/develop' into blockpool2zelig2015-03-0341-624/+1032 | |\| | | | | | | | | * | | | | | | | | - fix peer disconnect by adding severity function to errszelig2015-03-034-38/+55 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - improve logging - suicide -> removeChain - improved status BlocksInPool calculation * | | | | | | | | | Fixes and debug addedobscuren2015-03-044-6/+8 | | | | | | | | | | * | | | | | | | | | mergeobscuren2015-03-0415-209/+169 |\ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / | |/| | | | | | | | | * | | | | | | | | Filter accepts multiple topics per entry. Fixes #403obscuren2015-03-024-104/+40 | | | | | | | | | | | * | | | | | | | | GetOrNew for accessors. Fixes #404obscuren2015-03-022-17/+9 | | |/ / / / / / / | |/| | | | | | | | * | | | | | | | Report debug hash rateobscuren2015-03-012-6/+15 | | | | | | | | | | * | | | | | | | Fixed miner threads for ethereum CLIobscuren2015-03-012-18/+22 | | | | | | | | | | * | | | | | | | Merge pull request #402 from tgerring/rpcupdatesJeffrey Wilcke2015-03-016-66/+72 | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Set RPC listening address via param | | * | | | | | | | Report RPC listening address in logsTaylor Gerring2015-02-281-1/+3 | | | | | | | | | | | | * | | | | | | | Add flag to set RPC portTaylor Gerring2015-02-286-65/+69 | | | |/ / / / / / | | |/| | | | | | | * | | | | | | | Merge pull request #398 from tgerring/assetpathJeffrey Wilcke2015-03-011-2/+11 | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Check source directory for assets as last resort | | * | | | | | | | bump last resort check out of ifelseTaylor Gerring2015-02-271-5/+6 | | | | | | | | | | | | * | | | | | | | Check source directroy for assets as last resortTaylor Gerring2015-02-271-2/+10 | | | | | | | | | | * | | | | | | | | | Merge branch 'xcthulhu-publictests' into poc-9obscuren2015-03-0458-95/+17748 |\ \ \ \ \ \ \ \ \ \ | * | | | | | | | | | fixed pow stuffobscuren2015-03-0410-58/+28 | | | | | | | | | | | | * | | | | | | | | | Merge branch 'publictests' of https://github.com/xcthulhu/go-ethereum into ↵obscuren2015-03-0452-42/+17725 | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | xcthulhu-publictests | | * | | | | | | | | | Introducing ethashMatthew Wampler-Doty2015-03-0352-70/+17425 | | | | | | | | | | | | | | * | | | | | | | | | Only one uncleMatthew Wampler-Doty2015-03-031-0/+4 | | | | | | | | | | | | | | * | | | | | | | | | Exposing stuff for ethashMatthew Wampler-Doty2015-02-283-2/+5 | | | | | | | | | | | | | | * | | | | | | | | | Merge branch 'publictests' of github.com:ebuchman/go-ethereum into ethash_powMatthew Wampler-Doty2015-02-2852-744/+1508 | | |\ \ \ \ \ \ \ \ \ \ | | | * | | | | | | | | | public functions for making chains on the flyEthan Buchman2015-02-282-96/+131 | | | | | | | | | | | | | | | | * | | | | | | | | | Merge branch 'develop' of https://github.com/ethereum/go-ethereum into developEthan Buchman2015-02-2782-1558/+2687 | | | |\ \ \ \ \ \ \ \ \ \ | | | * | | | | | | | | | | core: chain manager forking testsEthan Buchman2015-02-181-0/+276 | | | | | | | | | | | | | | | | | * | | | | | | | | | | Merge branch 'develop' of https://github.com/ethereum/go-ethereum into developEthan Buchman2015-02-18