aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* New DataArgs and eth_sendRawTransactionSilentCicero2015-06-175-3/+64
|
* thanks subtly :)Nick Dodson2015-06-161-1/+1
|
* NewSigArgs arg change.Nick Dodson2015-06-161-1/+1
|
* Update utils.goNick Dodson2015-06-151-1/+1
|
* Update eth.goNick Dodson2015-06-151-1/+1
|
* Change eth_pushTx case to eth_sendRawTransactionNick Dodson2015-06-151-1/+1
|
* Changed variable namesSilentCicero2015-06-152-8/+2
|
* eth_pushTx send raw signed encoded TX data to the chain through RPCSilentCicero2015-06-153-0/+33
|
* Merge pull request #1255 from obscuren/chain-proc-interuptJeffrey Wilcke2015-06-122-2/+11
|\ | | | | eth, core: interrupt the chain processing on stop
| * core: changed interrupt strategyobscuren2015-06-121-102/+101
| | | | | | | | | | | | Removed chain manager's select/channel approach when checking for interrupts. Now using an atomic int32 instead which checked for every block processed.
| * eth, core: interupt the chain processing on stopobscuren2015-06-122-95/+105
| | | | | | | | | | Added an additional channel which is used to interupt the chain manager when it's processing blocks.
* | Merge pull request #1256 from obscuren/fix-printable-charsJeffrey Wilcke2015-06-125-52/+47
|\ \ | | | | | | core/vm: fixed strange output for trace logging & error reporting
| * | core/vm: Improved error reporting for trace loggingobscuren2015-06-124-46/+45
| | |
| * | core/vm: fixed printable characters using unicode insteadobscuren2015-06-122-6/+2
| |/
* | Merge pull request #1254 from bas-vk/ipcwindowspathfixJeffrey Wilcke2015-06-124-5/+26
|\ \ | | | | | | Invalid named pipe name
| * | removed obsolete console flagBas van Kervel2015-06-122-2/+0
| | |
| * | fixed windows ipc path issueBas van Kervel2015-06-124-4/+27
| | |
* | | Merge pull request #1245 from bas-vk/ipcdatadirfixJeffrey Wilcke2015-06-122-2/+2
|\| | | |/ |/| ipc socket always uses default path
| * ipc socket always used default pathBas van Kervel2015-06-122-2/+2
|/
* Merge pull request #1239 from bas-vk/rpc-apisJeffrey Wilcke2015-06-1150-250/+7950
|\ | | | | RPC refactoring
| * fixed incomplete merge actionBas van Kervel2015-06-112-703/+1
| |
| * removed obsolete print statementBas van Kervel2015-06-112-89/+1
| |
| * removed binary filesBas van Kervel2015-06-112-7/+0
| |
| * upgrade web3.js with _extend supportBas van Kervel2015-06-117-6/+51
| |
| * added net APIBas van Kervel2015-06-111-0/+8
| |
| * added miner APIBas van Kervel2015-06-111-1/+5
| |
| * added console binaryBas van Kervel2015-06-111-5/+89
| |
| * fixed windows build problemBas van Kervel2015-06-111-0/+702
| |
| * changed send methods for backwards compatability in geth consoleBas van Kervel2015-06-112-2/+54
| |
| * added console commandBas van Kervel2015-06-115-26/+64
| |
| * added API/IPC commandline flagsBas van Kervel2015-06-111-0/+5
| |
| * restructured eth rpc APIBas van Kervel2015-06-113-0/+122
| |
| * added shh APIBas van Kervel2015-06-116-5/+370
| |
| * cleanup of javascript APIBas van Kervel2015-06-1110-89/+91
| |
| * added txpool APIBas van Kervel2015-06-114-1/+91
| |
| * changed console welcome messageBas van Kervel2015-06-111-12/+9
| |
| * upgrade web3.js with _extend supportBas van Kervel2015-06-116-2829/+230
| |
| * added admin APIBas van Kervel2015-06-1114-203/+613
| |
| * added personal APIBas van Kervel2015-06-115-9/+259
| |
| * added debug APIBas van Kervel2015-06-119-712/+980
| |
| * only load supported api'sBas van Kervel2015-06-112-9/+81
| |
| * added net APIBas van Kervel2015-06-119-11/+141
| |
| * added miner APIBas van Kervel2015-06-115-1/+323
| |
| * added console binaryBas van Kervel2015-06-116-0/+402
| |
| * fixed windows build problemBas van Kervel2015-06-111-1/+1
| |
| * fixed unittest build problemBas van Kervel2015-06-111-1/+1
| |
| * changed send methods for backwards compatability in geth consoleBas van Kervel2015-06-113-2/+57
| |
| * added console commandBas van Kervel2015-06-1112-249/+4819
| |
| * added API/IPC commandline flagsBas van Kervel2015-06-114-0/+50
| |
| * added RPC/IPC supportBas van Kervel2015-06-116-1/+887
| |
| * restructured eth rpc APIBas van Kervel2015-06-1111-0/+2167
|/
* Merge pull request #1228 from obscuren/vm-optimisationsJeffrey Wilcke2015-06-1116-159/+200
|\ | | | | core/vm: optimisations
| * core: retry block now also parellise nonce checksobscuren2015-06-111-2/+8
| |
| * core/vm: added a comment regarding the uint64 vs *big.Intobscuren2015-06-111-1/+3
| |
| * cmd/geth: Added optional debug flag for reprocess blockobscuren2015-06-111-2/+5
| |
| * cmd/evm: print trace when running programsobscuren2015-06-111-0/+3
| |
| * core/vm: reverse loop stackobscuren2015-06-111-2/+3
| |
| * core/vm: fixed a bug where `Data` ignored the stack ptrobscuren2015-06-111-1/+1
| |
| * core, core/vm: moved logger and added gas cost to struct loggingobscuren2015-06-114-10/+10
| |
| * core/vm: unexported stack again. No longer requiredobscuren2015-06-103-16/+16
| |
| * core/vm: documentation and name changesobscuren2015-06-102-18/+34
| |
| * cmd/evm: implements vm.Environmentobscuren2015-06-101-0/+7
| |
| * miner: update gas used after tx proc for pending blockobscuren2015-06-101-1/+2
| |
| * core: log tx count for each set of blocks we're importingobscuren2015-06-101-1/+4
| |
| * core/vm, core/state: added storage to structured vm loggingobscuren2015-06-104-9/+39
| |
| * core, core/vm: added structure loggingobscuren2015-06-109-149/+104
| | | | | | | | This also reduces the time required spend in the VM
| * core/vm: added structured loggingobscuren2015-06-102-8/+22
| |
| * core/vm: changed program counter to uint64obscuren2015-06-102-13/+13
| |
* | Merge pull request #1227 from karalabe/block-fetcher-optimisationsJeffrey Wilcke2015-06-111-18/+37
|\ \ | | | | | | eth: optimize the notification/explicit fetch mechanism
| * | eth: dedup fetches to ensure no blocks are pulled twicePéter Szilágyi2015-06-111-5/+23
| | |
| * | eth: randomly fetch announced block (don't hammer origin)Péter Szilágyi2015-06-111-4/+5
| | |
| * | eth: discard fetched blocks that don't fit (no goroutine)Péter Szilágyi2015-06-111-13/+13
| | |
* | | Merge pull request #1224 from karalabe/report-import-progressJeffrey Wilcke2015-06-112-8/+51
|\ \ \ | | | | | | | | cmd/geth, eth/downloader: collect and report import progress too
| * | | eth/downloader: fetch the block hashes on the fly, when neededPéter Szilágyi2015-06-111-9/+5
| | | |
| * | | cmd/geth: round the import ETA before converting to stringPéter Szilágyi2015-06-101-1/+1
| | | |
| * | | cmd/geth, eth/downloader: rough guess at the import etaPéter Szilágyi2015-06-102-4/+20
| | | |
| * | | cmd/geth, eth/downloader: collect and report import progress tooPéter Szilágyi2015-06-102-8/+39
| | | |
* | | | Merge pull request #1218 from tgerring/rpcsignJeffrey Wilcke2015-06-111-0/+8
|\ \ \ \ | | | | | | | | | | Updated RPC sign test
| * | | | Updated testTaylor Gerring2015-06-111-0/+8
| | |/ / | |/| |
* | | | Merge pull request #1223 from obscuren/tx-pool-vroooooomJeffrey Wilcke2015-06-113-41/+32
|\ \ \ \ | |/ / / |/| | | core: fixed race condition in the transaction pool
| * | | core: fixed race condition for subscriptionsobscuren2015-06-101-2/+1
| | | |
| * | | core: fixed testobscuren2015-06-101-4/+1
| | | |
| * | | core: fixed race condition in the transaction poolobscuren2015-06-102-35/+30
|/ / / | | | | | | | | | Removed `Stop/Start` mechanism from the transaction pool.
* | | Merge pull request #1230 from fjl/p2p-discover-fix-ping-testJeffrey Wilcke2015-06-104-48/+49
|\ \ \ | | | | | | | | p2p/discover: deflake TestUDP_successfulPing
| * | | p2p/discover: use separate rand.Source instances in testsFelix Lange2015-06-102-15/+19
| | | | | | | | | | | | | | | | rand.Source isn't safe for concurrent use.
| * | | p2p/discover: deflake TestUDP_successfulPingFelix Lange2015-06-102-33/+30
|/ / /
* | | Merge pull request #1222 from obscuren/state-vm-test-suit-fixJeffrey Wilcke2015-06-101-1/+1
|\ \ \ | |/ / |/| | tests: check gas limit error
| * | tests: check gas limit errorobscuren2015-06-101-1/+1
| |/
* | Merge pull request #1221 from karalabe/fix-p2p-dial-testFelix Lange2015-06-101-1/+2
|\ \ | |/ |/| p2p: fix a close race in the dial test
| * p2p: fix a close race in the dial testPéter Szilágyi2015-06-101-1/+2
|/
* cmd/geth: develop version bump 0.9.29obscuren2015-06-101-1/+1
|
* Merge branch 'release/0.9.28' into developobscuren2015-06-106-25/+46
|\
| * rpc: skip test if solc version doesn't matchobscuren2015-06-101-1/+1
| |
| * core, xeth: moved nonce management burden from xeth to txpoolobscuren2015-06-104-23/+44
| |
| * cmd/geth: bumped version number 0.9.28obscuren2015-06-101-1/+1
|/
* Merge pull request #1220 from karalabe/fix-chain-deadlock2Jeffrey Wilcke2015-06-102-6/+18
|\ | | | | core: fix a lock annoyance and potential deadlock
| * event/filter: hack around data race in the testPéter Szilágyi2015-06-101-1/+6
| |
| * core: fix a race condition accessing the gas limitPéter Szilágyi2015-06-101-3/+5
| |
| * core: fix a lock annoyance and potential deadlockPéter Szilágyi2015-06-101-4/+9
|/
* Merge pull request #1212 from fjl/p2p-eth-block-timeoutJeffrey Wilcke2015-06-108-362/+341
|\ | | | | eth, p2p: improve write timeouts and behaviour under load
| * core, eth: document that result of GetTransactions is modifiableFelix Lange2015-06-092-2/+5
| |
| * eth/downloader: fix hash fetch timeout handlingFelix Lange2015-06-091-12/+18
| | | | | | | | Fixes #1206
| * p2p: bump global write timeout to 20sFelix Lange2015-06-091-1/+1
| | | | | | | | | | The previous value of 5 seconds causes timeouts for legitimate messages if large messages are sent.
| * eth: add protocol testsFelix Lange2015-06-091-336/+190
| | | | | | | | The protocol tests were commented out when eth/downloader was introduced.
| * eth: limit number of sent transactions based on message sizeFelix Lange2015-06-092-9/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Nodes that are out of sync will queue many transactions, which causes the initial transactions message to grow very large. Larger transactions messages can make communication impossible if the message is too big to send. Big transactions messages also exhaust egress bandwidth, which degrades other peer connections. The new approach to combat these issues is to send transactions in smaller batches. This commit introduces a new goroutine that handles delivery of all initial transaction transfers. Size-limited packs of transactions are sent to one peer at a time, conserving precious egress bandwidth.
| * eth: limit number of sent blocks based on message sizeFelix Lange2015-06-091-2/+11
| | | | | | | | | | If blocks get larger, sending 256 at once can make messages large enough to exceed the low-level write timeout.
| * core/types: add Transaction.SizeFelix Lange2015-06-091-0/+7
|/
* Merge pull request #1213 from karalabe/polish-console-prettyprinterJeffrey Wilcke2015-06-091-11/+28
|\ | | | | jsre: patch up the pretty printer to have a decent look
| * jsre: print function arguments tooPéter Szilágyi2015-06-091-1/+1
| |
| * jsre: sort pretty print output, fields before funcsPéter Szilágyi2015-06-091-3/+20
| |
| * jsre: fix wrong separator comma placing due to non consistent field ordersPéter Szilágyi2015-06-091-7/+7
| |
* | Merge pull request #1219 from Gustav-Simonsson/precompiled_ec_recover_paddingJeffrey Wilcke2015-06-0938-357/+20683
|\ \ | | | | | | Precompiled ec recover padding
| * | Remove unneeded if check on EC recover paddingGustav Simonsson2015-06-091-3/+1
| | |
| * | Skip BlockTests/bcValidBlockTests SimpleTx3Gustav Simonsson2015-06-091-1/+3
| | |
| * | Pad precompiled EC recover input and add validationsGustav Simonsson2015-06-091-8/+14
| | |
| * | Skip VMTests RandomTests temporarily until they are fixedGustav Simonsson2015-06-091-0/+1
| | |
| * | Update Ethereum JSON test filesGustav Simonsson2015-06-0935-348/+20667
| | |
* | | Merge pull request #1216 from karalabe/fix-eth-dataracesJeffrey Wilcke2015-06-095-38/+85
|\ \ \ | |/ / |/| | Fix various data races in eth and core
| * | core: fix up a deadlock caused by double lockingPéter Szilágyi2015-06-091-8/+5
| | |
| * | p2p: fix close data racePéter Szilágyi2015-06-091-0/+1
| | |
| * | core: fix data race accessing ChainManager.currentBlockPéter Szilágyi2015-06-091-1/+4
| | |
| * | core: fix data race in accessing ChainManager.tdPéter Szilágyi2015-06-091-9/+8
| | |
| * | eth: fix a data race in the hash announcement processingPéter Szilágyi2015-06-091-10/+18
| | |
| * | eth: fix data race accessing peer.tdPéter Szilágyi2015-06-093-14/+33
| | |
| * | eth: fix data race accessing peer.recentHashPéter Szilágyi2015-06-093-12/+32
| | |
* | | Merge pull request #1217 from tgerring/rpcsignJeffrey Wilcke2015-06-092-13/+74
|\ \ \ | | | | | | | | Fix RPC sign
| * | | Fixed signing + testsTaylor Gerring2015-06-092-13/+74
| | | |
* | | | skip sol on new compilerobscuren2015-06-091-2/+2
| | | |
* | | | Merge pull request #1156 from tgerring/issue1145Jeffrey Wilcke2015-06-094-36/+73
|\ \ \ \ | |/ / / |/| | | Differentiate between 0 and unspecified gas/gasprice
| * | | gas -> gaspriceTaylor Gerring2015-06-091-2/+2
| | | |
| * | | gas -> gaspriceTaylor Gerring2015-06-091-2/+2
| | | |
| * | | Differentiate between 0 and unspecified gas/gaspriceTaylor Gerring2015-06-094-36/+73
| | | |
* | | | Merge pull request #1215 from obscuren/issue1202Jeffrey Wilcke2015-06-091-5/+10
|\ \ \ \ | | | | | | | | | | core: skip genesis block for reprocess. Closes #1202
| * | | | core: skip genesis block for reprocess. Closes #1202obscuren2015-06-091-5/+10
| | |_|/ | |/| |
* | | | Fixed readme links and descriptionobscuren2015-06-091-2/+4
| |_|/ |/| |
* | | Merge pull request #1188 from karalabe/newblockhashes-proposalJeffrey Wilcke2015-06-094-81/+262
|\ \ \ | | | | | | | | eth: implement the NewBlockHashes protocol proposal
| * | | eth: clean up pending announce download map, polish logsPéter Szilágyi2015-06-092-14/+26
| | | |
| * | | eth: split and handle explicitly vs. download requested blocksPéter Szilágyi2015-06-092-23/+81
| | | |
| * | | eth: fetch announced hashes from origin, periodicallyPéter Szilágyi2015-06-092-32/+80
| | | |
| * | | eth: mark blocks as known when broadcasting hashes tooPéter Szilágyi2015-06-081-0/+3
| | | |
| * | | eth: implement the NewBlockHashes protocol proposalPéter Szilágyi2015-06-083-63/+123
| | | |
* | | | Merge pull request #1153 from karalabe/downloader-banned-starvation-attackJeffrey Wilcke2015-06-096-177/+315
|\ \ \ \ | |_|/ / |/| | | eth/downloader: gather and ban hashes from invalid chains
| * | | eth/downloader: test registration rejection on head banPéter Szilágyi2015-06-081-2/+10
| | | |
| * | | eth/downloader: reject peer registration if head is bannedPéter Szilágyi2015-06-081-4/+15
| | | |
| * | | eth/downloader: cap the hash ban set, add test for itPéter Szilágyi2015-06-086-12/+64
| | | |
| * | | eth/downloader: fix throttling test to be less timing dependentPéter Szilágyi2015-06-081-3/+7
| | | |
| * | | eth/downloader: fix another rebase errorPéter Szilágyi2015-06-081-2/+1
| | | |
| * | | eth/downloader: preallocate the block cachePéter Szilágyi2015-06-083-21/+14
| | | |
| * | | eth/downloader: fix merge compile errorPéter Szilágyi2015-06-081-1/+1
| | | |
| * | | eth/downloader: don't block hash deliveries while pulling blocksPéter Szilágyi2015-06-081-17/+14
| | | |
| * | | eth/downloader: update test for shitty travisPéter Szilágyi2015-06-081-1/+1
| | | |
| * | | eth/downloader: clean up and simplify the code a bitPéter Szilágyi2015-06-081-13/+3
| | | |
| * | | eth/downloader: short circuit sync if head hash is bannedPéter Szilágyi2015-06-081-0/+4
| | | |
| * | | eth/downloader: accumulating hash bans for reconnecting attackersPéter Szilágyi2015-06-082-5/+126
| | | |
| * | | eth/downloader: clean up tests and unused variablesPéter Szilágyi2015-06-082-120/+79
| |/ /
* | | Merge pull request #1211 from obscuren/genesis_writout_fixJeffrey Wilcke2015-06-092-7/+8
|\ \ \ | |_|/ |/| | core: write accounts to statedb. Closes #1210
| * | core: write accounts to statedb. Closes #1210obscuren2015-06-092-7/+8
|/ /
* | Merge pull request #1193 from tgerring/hotbackupJeffrey Wilcke2015-06-093-5/+55
|\ \ | | | | | | Improve export command
| * | Export should start with block 0Taylor Gerring2015-06-061-1/+1
| | |
| * | Improved error checkingTaylor Gerring2015-06-061-3/+7
| | |
| * | CleanupTaylor Gerring2015-06-062-3/+2
| | |
| * | Allow export command to take first and last argsTaylor Gerring2015-06-062-1/+36
| | |
| * | Allow exporting subset of chainTaylor Gerring2015-06-061-2/+14
| | |
* | | Merge pull request #1209 from obscuren/txpool_test_and_pending_fixJeffrey Wilcke2015-06-092-1/+24
|\ \ \ | | | | | | | | core: added a test for missing nonces
| * | | core: added a test for missing noncesobscuren2015-06-092-1/+24
|/ / / | | | | | | | | | | | | This test showed the logic in the queue was slightly flawed sending out transactions to its peer it couldn't even resolve itself.
* | | Merge pull request #1199 from obscuren/settable_genesis_nonceJeffrey Wilcke2015-06-099-28/+84
|\ \ \ | | | | | | | | core: settable genesis nonce
| * | | core: settable genesis nonceobscuren2015-06-099-28/+84
| | |/ | |/| | | | | | | | | | | | | | | | You can set the nonce of the block with `--genesisnonce`. When the genesis nonce changes and it doesn't match with the first block in your database it will fail. A new `datadir` must be given if the nonce of the genesis block changes.
* | | Merge pull request #1204 from carver/deep-log-crashfixJeffrey Wilcke2015-06-091-1/+1
|\ \ \ | | | | | | | | crash fix: skip deep log if self.chain is not caught up
| * | | crash fix: skip deep log if self.chain is not caught upJason Carver2015-06-091-1/+1
|/ / / | | | | | | | | | @see trace https://gist.github.com/eupraxic/87fdfefe702c51d5944d
* / / Fix blocktestTaylor Gerring2015-06-091-3/+3
|/ /
* | Merge pull request #1198 from fjl/core-fix-nonce-checkJeffrey Wilcke2015-06-084-3/+74
|\ \ | | | | | | core: fix nonce verification one more time
| * | core: add bad block for the 'missing nonce check' forkFelix Lange2015-06-081-0/+1
| | |
| * | core: fix the nonce check one more timeFelix Lange2015-06-083-3/+73
| |/ | | | | | | | | The block nonce verification was effectively disabled by a typo. This time, there is an actual test for it.
* / added ARM buildsJeffrey Wilcke2015-06-061-4/+4
|/
* cmd/geth: version bump 0.9.27obscuren2015-06-051-1/+1
|
* wipobscuren2015-06-051-2/+10
|
* Merge pull request #1189 from karalabe/downloader-polishesJeffrey Wilcke2015-06-053-19/+50
|\ | | | | eth/downloader: handle timeouts more gracefully
| * eth/downloader: differentiate stale and nonexistent deliveriesPéter Szilágyi2015-06-052-19/+46
| |
| * eth/downloader: log hard timeouts and reset capacityPéter Szilágyi2015-06-052-0/+4
| |
* | Merge pull request #1100 from karalabe/drop-sync-peer-on-empty-hashJeffrey Wilcke2015-06-052-3/+3
|\ \ | |/ |/| eth, eth/downloader: fix #1098, elevate empty hash errors to peer drops
| * eth, eth/downloader: fix #1098, elevate empty hash errors to peer dropsPéter Szilágyi2015-06-052-3/+3
|/
* Merge pull request #1185 from fjl/p2p-nat-timeoutsJeffrey Wilcke2015-06-053-4/+10
|\ | | | | p2p/nat: request timeouts for UPnP discovery
| * p2p/nat: add timeout for UPnP SOAP requestsFelix Lange2015-06-051-0/+3
| |
| * Godeps: update github.com/huin/goupnp to 5cff77a69fb22f5Felix Lange2015-06-052-4/+7
|/ | | | This includes a fix adding a timeout to router discovery requests.
* Merge pull request #1186 from obscuren/log_fixesJeffrey Wilcke2015-06-051-3/+3
|\ | | | | tests: log coalescing fixes
| * tests: use state logs instead own kept logsobscuren2015-06-051-3/+3
|/
* Merge pull request #1181 from obscuren/txpool_fixesJeffrey Wilcke2015-06-0525-347/+390
|\ | | | | cmd: transaction pool fixes and improvements
| * core: added fork test & double nonce testobscuren2015-06-052-20/+75
| |
| * crypto: return common.Address rather than raw bytesobscuren2015-06-053-8/+8
| |
| * core: documented changes in tx poolobscuren2015-06-041-3/+30
| |
| * core: only change the nonce if the account nonce is lowerobscuren2015-06-041-1/+3
| |
| * skipped failing natspec testsobscuren2015-06-042-2/+2
| |
| * core: renamed txs to pendingobscuren2015-06-042-24/+24
| |
| * cmd/geth, common/natspec: updating tests (still failing?)obscuren2015-06-042-2/+2
| |
| * xeth: use the correct nonce for creating transactionsobscuren2015-06-041-3/+2
| |
| * core: test updatesobscuren2015-06-042-2/+1
| |
| * core, eth, miner: moved nonce management to tx pool.obscuren2015-06-046-104/+66
| | | | | | | | | | | | | | | | Removed the managed tx state from the chain manager to the transaction pool where it's much easier to keep track of nonces (and manage them). The transaction pool now also uses the queue and pending txs differently where queued txs are now moved over to the pending queue (i.e. txs ready for processing and propagation).
| * cmd/utils, eth: core.NewBlockProcessor no longer needs TxPoolFelix Lange2015-06-042-3/+2
| |
| * core: don't remove transactions after block processingFelix Lange2015-06-044-11/+5
| | | | | | | | | | The transaction pool drops processed transactions on its own during pool maintenance.
| * core: update documentation comments for TxPoolFelix Lange2015-06-041-22/+25
| |
| * core: remove unused code from TxPoolFelix Lange2015-06-041-41/+13
| |
| * core: compute less transaction hashes in TxPoolFelix Lange2015-06-042-82/+82
| |
| * wipobscuren2015-06-043-10/+69
| |
| * types: block json unmarshal method addedobscuren2015-06-043-6/+30
| |
| * core/vm: cleanup and renamesobscuren2015-06-045-52/+0
| |
* | Merge pull request #1184 from karalabe/nonstop-block-fetchesJeffrey Wilcke2015-06-053-20/+33
|\ \ | |/ |/| eth/downloader: fix #1178, don't request blocks beyond the cache bounds
| * eth/downloader: drop log entry from peer, it's covered alreadyPéter Szilágyi2015-06-041-5/+0
| |
| * eth/downloader: log after state updates, easier to debugPéter Szilágyi2015-06-041-5/+3
| |
| * eth/downloader: fix #1178, don't request blocks beyond the cache boundsPéter Szilágyi2015-06-043-15/+35
|/
* Merge pull request #1167 from Gustav-Simonsson/check_ec_recover_errJeffrey Wilcke2015-06-044-18/+25
|\ | | | | Add missing err checks on From()
| * Add missing err checks on From() (skip RPC for now)Gustav Simonsson2015-06-024-18/+25
| |
* | Merge pull request #1151 from fjl/parallel-nonce-2Jeffrey Wilcke2015-06-041-67/+49
|\ \ | | | | | | core: re-add parallel nonce checks
| * | core: insert less length zero chainsFelix Lange2015-06-011-4/+5
| | | | | | | | | | | | This reduces the amount of queueEvents that are sent internally.
| * | core: re-add parallel nonce checksFelix Lange2015-06-011-63/+44
| |/ | | | | | | | | In this incancation, the processor waits until the nonce has been verified before handling the block.
* | Merge pull request #1150 from fjl/fix-jumpdestJeffrey Wilcke2015-06-044-30/+173
|\ \ | | | | | | core/vm: improve JUMPDEST analysis
| * | tests/files: update tests to d309b4679a58d2Felix Lange2015-06-033-912/+1386
| | |
| * | core/vm: check for 'no code' before doing any workFelix Lange2015-06-031-5/+5
| | |
| * | core/vm: improve JUMPDEST analysisFelix Lange2015-06-033-25/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | * JUMPDEST analysis is faster because less type conversions are performed. * The map of JUMPDEST locations is now created lazily at the first JUMP. * The result of the analysis is kept around for recursive invocations through CALL/CALLCODE. Fixes #1147
| * | Update Ethereum JSON test filesGustav Simonsson2015-05-297-3664/+4028
| | |
* | | Merge pull request #1176 from karalabe/congestion-controlJeffrey Wilcke2015-06-035-55/+72
|\ \ \ | | | | | | | | eth/downloader: add a basic block download congestion control
| * | | eth/downloader: demote peers if they exceed the soft limits at 1 blocks alreadyPéter Szilágyi2015-06-031-3/+8
| | | |
| * | | eth/downloader: add a basic block download congestion controlPéter Szilágyi2015-06-035-55/+67
| | | |
* | | | Merge pull request #1166 from Gustav-Simonsson/add_ec_sig_validationsJeffrey Wilcke2015-06-033-22/+31
|\ \ \ \ | | | | | | | | | | Add EC signature validations before call to libsecp256k1
| * | | | Initialise curve N value in package initGustav Simonsson2015-06-031-1/+3
| | | | |
| * | | | Add EC signature validations before call to libsecp256k1Gustav Simonsson2015-06-023-22/+29
| | |_|/ | |/| |
* | | | Merge pull request #1175 from karalabe/keccak-updateJeffrey Wilcke2015-06-032-173/+409
|\ \ \ \ | |_|/ / |/| | | crypto/sha3: pull in latest keccak from go crypto (45% speed increase)
| * | | crypto/sha3: pull in latest keccak from go crypto (45% speed increase)Péter Szilágyi2015-06-032-173/+409
|/ / /
* | | Merge pull request #1169 from Gustav-Simonsson/unsupport_brunclesJeffrey Wilcke2015-06-0311-4578/+5558
|\ \ \ | |/ / |/| | Unsupport bruncles
| * | Add new 0th gen uncle testGustav Simonsson2015-06-021-0/+1
| | |
| * | Use older version of stSpecialTest until JUMPDEST fix is mergedGustav Simonsson2015-06-021-124/+0
| | |
| * | Update Ethereum JSON test filesGustav Simonsson2015-06-022-985/+1250
| | |
| * | Unsupport brunclesGustav Simonsson2015-06-021-2/+2
| | |
| * | Update Ethereum JSON test filesGustav Simonsson2015-06-029-4574/+5412
|/ /
* | Merge pull request #1161 from tgerring/bootnodeFelix Lange2015-06-011-1/+1
|\ \ | | | | | | Updated SA boot node
| * | Update bootnodeTaylor Gerring2015-06-011-1/+1
|/ /
* | Merge pull request #1155 from karalabe/fix-chainmanager-dataraceFelix Lange2015-05-301-2/+2
|\ \ | |/ |/| core: fix #1154, sort out data race accessing the future blocks
| * core: fix #1154, sort out data race accessing the future blocksPéter Szilágyi2015-05-301-2/+2
| |
* | Merge branch 'release/0.9.26'obscuren2015-05-291-9/+8
|\ \
| * | core: moved guardsobscuren2015-05-291-9/+8
| | |
| * | Merge branch 'release/0.9.26' into developobscuren2015-05-291-1/+1
| |\ \
* | \ \ Merge branch 'release/0.9.26'obscuren2015-05-2924-1986/+779
|\ \ \ \ | | |/ / | |/| |
| * | | cmd/geth: bump version v0.9.26obscuren2015-05-281-1/+1
| |/ /
| * | build server fixobscuren2015-05-281-0/+4
| | |
| * | Merge pull request #1142 from obscuren/100-pct-block-propJeffrey Wilcke2015-05-281-2/+1
| |\ \ | | | | | | | | eth: 100% block propogation
| | * | eth: 100% block propogationobscuren2015-05-281-2/+1
| |/ /
| * | Merge pull request #1140 from Gustav-Simonsson/fix_account_unlock_loggingJeffrey Wilcke2015-05-281-2/+2
| |\ \ | | | | | | | | Validate account length and avoid slicing in logging
| | * | Validate account length and avoid slicing in loggingGustav Simonsson2015-05-281-2/+2
| | | |
| * | | Merge pull request #1141 from obscuren/parallelisation-issueJeffrey Wilcke2015-05-282-25/+58
| |\ \ \ | | | | | | | | | | Parallelisation issue
| | * | | core: added bad blockobscuren2015-05-281-0/+1
| | | | |
| | * | | core: log block hash during nonce errorobscuren2015-05-281-2/+2
| | | | |